diff options
| author | David <30951234+Davidyz@users.noreply.github.com> | 2025-05-09 20:28:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-09 12:28:29 -0700 |
| commit | 9ba4776c614913b44a9816db7395d27b08ed2b5a (patch) | |
| tree | 01e61bc20275c448a0986e2c94f198234e3702fc /lsp/vectorcode_server.lua | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-9ba4776c614913b44a9816db7395d27b08ed2b5a.tar nvim-lspconfig-9ba4776c614913b44a9816db7395d27b08ed2b5a.tar.gz nvim-lspconfig-9ba4776c614913b44a9816db7395d27b08ed2b5a.tar.bz2 nvim-lspconfig-9ba4776c614913b44a9816db7395d27b08ed2b5a.tar.lz nvim-lspconfig-9ba4776c614913b44a9816db7395d27b08ed2b5a.tar.xz nvim-lspconfig-9ba4776c614913b44a9816db7395d27b08ed2b5a.tar.zst nvim-lspconfig-9ba4776c614913b44a9816db7395d27b08ed2b5a.zip | |
feat(vectorcode_server): add `vim.lsp.config` support #3824
Diffstat (limited to 'lsp/vectorcode_server.lua')
| -rw-r--r-- | lsp/vectorcode_server.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lsp/vectorcode_server.lua b/lsp/vectorcode_server.lua new file mode 100644 index 00000000..4a591802 --- /dev/null +++ b/lsp/vectorcode_server.lua @@ -0,0 +1,9 @@ +---@brief +--- https://github.com/Davidyz/VectorCode +--- +--- A Language Server Protocol implementation for VectorCode, a code repository indexing tool. +return { + cmd = { 'vectorcode-server' }, + root_dir = vim.fs.root(0, { '.vectorcode', '.git' }), + settings = {}, +} |
