aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim_lsp/julials.lua
diff options
context:
space:
mode:
authorHirokazu Hata <h.hata.ai.t@gmail.com>2020-09-06 17:49:21 +0900
committerHirokazu Hata <h.hata.ai.t@gmail.com>2020-09-06 17:49:21 +0900
commitddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de (patch)
treec301c7a765535dcb5387d76cc71e28d845dcce23 /lua/nvim_lsp/julials.lua
parentMerge pull request #238 from steelsojka/angular-ls (diff)
downloadnvim-lspconfig-ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de.tar
nvim-lspconfig-ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de.tar.gz
nvim-lspconfig-ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de.tar.bz2
nvim-lspconfig-ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de.tar.lz
nvim-lspconfig-ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de.tar.xz
nvim-lspconfig-ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de.tar.zst
nvim-lspconfig-ddcd9e6aae50d6397e43e4fc9ba0cf7a82cc79de.zip
Rename nvim_lsp to lspconfig
Diffstat (limited to 'lua/nvim_lsp/julials.lua')
-rw-r--r--lua/nvim_lsp/julials.lua66
1 files changed, 0 insertions, 66 deletions
diff --git a/lua/nvim_lsp/julials.lua b/lua/nvim_lsp/julials.lua
deleted file mode 100644
index 6c30e8bd..00000000
--- a/lua/nvim_lsp/julials.lua
+++ /dev/null
@@ -1,66 +0,0 @@
-local configs = require 'nvim_lsp/configs'
-local util = require 'nvim_lsp/util'
-
-local environment_directory = util.path.join(util.base_install_dir, "julials")
-
-configs.julials = {
- default_config = {
- cmd = {
- "julia", "--project=" .. environment_directory, "--startup-file=no", "--history-file=no", "-e", [[
- using Pkg;
- Pkg.instantiate()
- using LanguageServer; using SymbolServer;
- depot_path = get(ENV, "JULIA_DEPOT_PATH", "")
- project_path = dirname(something(Base.current_project(pwd()), Base.load_path_expand(LOAD_PATH[2])))
- # Make sure that we only load packages from this environment specifically.
- empty!(LOAD_PATH)
- push!(LOAD_PATH, "@")
- @info "Running language server" env=Base.load_path()[1] pwd() project_path depot_path
- server = LanguageServer.LanguageServerInstance(stdin, stdout, project_path, depot_path);
- server.runlinter = true;
- run(server);
- ]]
- };
- filetypes = {'julia'};
- root_dir = function(fname)
- return util.find_git_ancestor(fname) or vim.loop.os_homedir()
- end;
- };
- docs = {
- package_json = "https://raw.githubusercontent.com/julia-vscode/julia-vscode/master/package.json";
- description = [[
-https://github.com/julia-vscode/julia-vscode
-`LanguageServer.jl` can be installed via `:LspInstall julials` or by yourself the `julia` and `Pkg`:
-```sh
-julia --project=]] .. environment_directory .. [[ -e 'using Pkg; Pkg.add("LanguageServer"); Pkg.add("SymbolServer")'
-```
-If you want to install the LanguageServer manually, you will have to ensure that the Julia environment is stored in this location:
-```vim
-:lua print(require'nvim_lsp'.util.path.join(require'nvim_lsp'.util.base_install_dir, "julials"))
-```
- ]];
- };
-}
-
-configs.julials.install = function()
-
- local script = [[
- julia --project=]] .. environment_directory .. [[ -e 'using Pkg; Pkg.add("LanguageServer"); Pkg.add("SymbolServer")'
- ]]
-
- util.sh(script, vim.loop.os_homedir())
-end
-
-configs.julials.install_info = function()
- local script = [[
- julia --project=]] .. environment_directory .. [[ -e 'using LanguageServer; using SymbolServer'
- ]]
-
- local status = pcall(vim.fn.system, script)
-
- return {
- is_installed = status and vim.v.shell_error == 0;
- }
-end
-
---- vim:et ts=2 sw=2