diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-03-27 05:55:40 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-03-27 05:55:40 +0000 |
| commit | e6c518191af238c9245eba93159a3a15f043dc91 (patch) | |
| tree | 301c85a7f2741117fe1d3eb5483c9487c73f42ba /doc | |
| parent | feat: vectorcode-server (#3660) (diff) | |
| download | nvim-lspconfig-e6c518191af238c9245eba93159a3a15f043dc91.tar nvim-lspconfig-e6c518191af238c9245eba93159a3a15f043dc91.tar.gz nvim-lspconfig-e6c518191af238c9245eba93159a3a15f043dc91.tar.bz2 nvim-lspconfig-e6c518191af238c9245eba93159a3a15f043dc91.tar.lz nvim-lspconfig-e6c518191af238c9245eba93159a3a15f043dc91.tar.xz nvim-lspconfig-e6c518191af238c9245eba93159a3a15f043dc91.tar.zst nvim-lspconfig-e6c518191af238c9245eba93159a3a15f043dc91.zip | |
docs: update configs.md
skip-checks: true
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/configs.md | 25 | ||||
| -rw-r--r-- | doc/configs.txt | 25 |
2 files changed, 50 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index 8e1c2096..3b06471d 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -341,6 +341,7 @@ Nvim by running `:help lspconfig-all`. - [vala_ls](#vala_ls) - [vale_ls](#vale_ls) - [vdmj](#vdmj) +- [vectorcode_server](#vectorcode_server) - [verible](#verible) - [veridian](#veridian) - [veryl_ls](#veryl_ls) @@ -11798,6 +11799,30 @@ Default config: - `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/vdmj.lua:44](../lua/lspconfig/configs/vdmj.lua#L44) +## vectorcode_server + +https://github.com/Davidyz/VectorCode + +A Language Server Protocol implementation for VectorCode, a code repository indexing tool. + +Snippet to enable the language server: +```lua +require'lspconfig'.vectorcode_server.setup{} +``` + +Default config: +- `cmd` : + ```lua + { "vectorcode-server" } + ``` +- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/vectorcode_server.lua:2](../lua/lspconfig/configs/vectorcode_server.lua#L2) +- `settings` : + ```lua + {} + ``` +- `single_file_support` : `false` + + ## verible https://github.com/chipsalliance/verible diff --git a/doc/configs.txt b/doc/configs.txt index 8e1c2096..3b06471d 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -341,6 +341,7 @@ Nvim by running `:help lspconfig-all`. - [vala_ls](#vala_ls) - [vale_ls](#vale_ls) - [vdmj](#vdmj) +- [vectorcode_server](#vectorcode_server) - [verible](#verible) - [veridian](#veridian) - [veryl_ls](#veryl_ls) @@ -11798,6 +11799,30 @@ Default config: - `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/vdmj.lua:44](../lua/lspconfig/configs/vdmj.lua#L44) +## vectorcode_server + +https://github.com/Davidyz/VectorCode + +A Language Server Protocol implementation for VectorCode, a code repository indexing tool. + +Snippet to enable the language server: +```lua +require'lspconfig'.vectorcode_server.setup{} +``` + +Default config: +- `cmd` : + ```lua + { "vectorcode-server" } + ``` +- `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/vectorcode_server.lua:2](../lua/lspconfig/configs/vectorcode_server.lua#L2) +- `settings` : + ```lua + {} + ``` +- `single_file_support` : `false` + + ## verible https://github.com/chipsalliance/verible |
