diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-05-09 19:29:41 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-05-09 19:29:41 +0000 |
| commit | 0943efd9654fb883e4ee6765ca020a7a90568e73 (patch) | |
| tree | 08061f7338a89b508534fa5220576387971a1011 | |
| parent | feat(vectorcode_server): add `vim.lsp.config` support #3824 (diff) | |
| download | nvim-lspconfig-0943efd9654fb883e4ee6765ca020a7a90568e73.tar nvim-lspconfig-0943efd9654fb883e4ee6765ca020a7a90568e73.tar.gz nvim-lspconfig-0943efd9654fb883e4ee6765ca020a7a90568e73.tar.bz2 nvim-lspconfig-0943efd9654fb883e4ee6765ca020a7a90568e73.tar.lz nvim-lspconfig-0943efd9654fb883e4ee6765ca020a7a90568e73.tar.xz nvim-lspconfig-0943efd9654fb883e4ee6765ca020a7a90568e73.tar.zst nvim-lspconfig-0943efd9654fb883e4ee6765ca020a7a90568e73.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 25 | ||||
| -rw-r--r-- | doc/configs.txt | 19 |
2 files changed, 44 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index 81780abc..b248e13b 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -333,6 +333,7 @@ Nvim by running `:help lspconfig-all`. - [vacuum](#vacuum) - [vala_ls](#vala_ls) - [vale_ls](#vale_ls) +- [vectorcode_server](#vectorcode_server) - [verible](#verible) - [veridian](#veridian) - [veryl_ls](#veryl_ls) @@ -12389,6 +12390,30 @@ Default config: --- +## 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 +vim.lsp.enable('vectorcode_server') +``` + +Default config: +- `cmd` : + ```lua + { "vectorcode-server" } + ``` +- `root_dir`: [../lsp/vectorcode_server.lua:5](../lsp/vectorcode_server.lua#L5) +- `settings` : + ```lua + {} + ``` + +--- + ## verible https://github.com/chipsalliance/verible diff --git a/doc/configs.txt b/doc/configs.txt index c3000804..f7f261ed 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -9180,6 +9180,25 @@ Default config: < ------------------------------------------------------------------------------ +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 + vim.lsp.enable('vectorcode_server') + + +Default config: +- cmd: >lua + { "vectorcode-server" } +- root_dir (use "gF" to view): ../lsp/vectorcode_server.lua:5 +- settings: >lua + {} +< + +------------------------------------------------------------------------------ verible https://github.com/chipsalliance/verible |
