aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions <github-actions@github.com>2023-07-20 05:58:17 +0000
committergithub-actions <github-actions@github.com>2023-07-20 05:58:17 +0000
commit443c56a0cc67aad932c49d0b4a814d3014a3732f (patch)
treec29140cf9a7bd59fa6469350a2a2a5ed23bcf3fc
parentfeat(v): add `v-analyzer` (#2726) (diff)
downloadnvim-lspconfig-443c56a0cc67aad932c49d0b4a814d3014a3732f.tar
nvim-lspconfig-443c56a0cc67aad932c49d0b4a814d3014a3732f.tar.gz
nvim-lspconfig-443c56a0cc67aad932c49d0b4a814d3014a3732f.tar.bz2
nvim-lspconfig-443c56a0cc67aad932c49d0b4a814d3014a3732f.tar.lz
nvim-lspconfig-443c56a0cc67aad932c49d0b4a814d3014a3732f.tar.xz
nvim-lspconfig-443c56a0cc67aad932c49d0b4a814d3014a3732f.tar.zst
nvim-lspconfig-443c56a0cc67aad932c49d0b4a814d3014a3732f.zip
docs: update server_configurations.md
skip-checks: true
-rw-r--r--doc/server_configurations.md32
-rw-r--r--doc/server_configurations.txt32
2 files changed, 64 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md
index 63dd7654..60217380 100644
--- a/doc/server_configurations.md
+++ b/doc/server_configurations.md
@@ -229,6 +229,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [unison](#unison)
- [unocss](#unocss)
- [uvls](#uvls)
+- [v_analyzer](#v_analyzer)
- [vala_ls](#vala_ls)
- [vale_ls](#vale_ls)
- [vdmj](#vdmj)
@@ -9986,6 +9987,37 @@ require'lspconfig'.uvls.setup{}
```
+## v_analyzer
+
+https://github.com/v-analyzer/v-analyzer
+
+V language server.
+
+`v-analyzer` can be installed by following the instructions [here](https://github.com/v-analyzer/v-analyzer#installation).
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.v_analyzer.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "v-analyzer" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "v", "vsh", "vv" }
+ ```
+ - `root_dir` :
+ ```lua
+ root_pattern("v.mod", ".git")
+ ```
+
+
## vala_ls
https://github.com/Prince781/vala-language-server
diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt
index 63dd7654..60217380 100644
--- a/doc/server_configurations.txt
+++ b/doc/server_configurations.txt
@@ -229,6 +229,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [unison](#unison)
- [unocss](#unocss)
- [uvls](#uvls)
+- [v_analyzer](#v_analyzer)
- [vala_ls](#vala_ls)
- [vale_ls](#vale_ls)
- [vdmj](#vdmj)
@@ -9986,6 +9987,37 @@ require'lspconfig'.uvls.setup{}
```
+## v_analyzer
+
+https://github.com/v-analyzer/v-analyzer
+
+V language server.
+
+`v-analyzer` can be installed by following the instructions [here](https://github.com/v-analyzer/v-analyzer#installation).
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.v_analyzer.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "v-analyzer" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "v", "vsh", "vv" }
+ ```
+ - `root_dir` :
+ ```lua
+ root_pattern("v.mod", ".git")
+ ```
+
+
## vala_ls
https://github.com/Prince781/vala-language-server