aboutsummaryrefslogtreecommitdiffstats
path: root/lsp
diff options
context:
space:
mode:
authorx626f <26394523+x626f@users.noreply.github.com>2025-10-29 10:30:42 -0700
committerGitHub <noreply@github.com>2025-10-29 10:30:42 -0700
commit1c14ef56cfe5048e4c29088c08be733a89b9a96c (patch)
treeb2d81e8aa0e1be1e87081fb31d22e897934ec4b6 /lsp
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-1c14ef56cfe5048e4c29088c08be733a89b9a96c.tar
nvim-lspconfig-1c14ef56cfe5048e4c29088c08be733a89b9a96c.tar.gz
nvim-lspconfig-1c14ef56cfe5048e4c29088c08be733a89b9a96c.tar.bz2
nvim-lspconfig-1c14ef56cfe5048e4c29088c08be733a89b9a96c.tar.lz
nvim-lspconfig-1c14ef56cfe5048e4c29088c08be733a89b9a96c.tar.xz
nvim-lspconfig-1c14ef56cfe5048e4c29088c08be733a89b9a96c.tar.zst
nvim-lspconfig-1c14ef56cfe5048e4c29088c08be733a89b9a96c.zip
docs(julialsp): fix installation command #4167
Diffstat (limited to 'lsp')
-rw-r--r--lsp/julials.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/julials.lua b/lsp/julials.lua
index 1500c53d..a31ac1cc 100644
--- a/lsp/julials.lua
+++ b/lsp/julials.lua
@@ -4,7 +4,7 @@
---
--- LanguageServer.jl, SymbolServer.jl and StaticLint.jl can be installed with `julia` and `Pkg`:
--- ```sh
---- julia --project=~/.julia/environments/nvim-lspconfig -e 'using Pkg; Pkg.add("LanguageServer#main"); Pkg.add("SymbolServer#master"); Pkg.add("StaticLint#master")'
+--- julia --project=~/.julia/environments/nvim-lspconfig -e 'using Pkg; Pkg.add("LanguageServer"); Pkg.add("SymbolServer"); Pkg.add("StaticLint")'
--- ```
--- where `~/.julia/environments/nvim-lspconfig` is the location where
--- the default configuration expects LanguageServer.jl, SymbolServer.jl and StaticLint.jl to be installed.