diff options
| author | David <30951234+Davidyz@users.noreply.github.com> | 2025-03-27 05:55:28 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-27 13:55:28 +0800 |
| commit | 8350b8cdef977ac8ff399d1db422431191ab405f (patch) | |
| tree | fc5caf6d393274c4d2ebb1fb014f05e2dda9bb33 /lua | |
| parent | feat: alias :LspInfo to `:checkhealth vim.lsp` #3663 (diff) | |
| download | nvim-lspconfig-8350b8cdef977ac8ff399d1db422431191ab405f.tar nvim-lspconfig-8350b8cdef977ac8ff399d1db422431191ab405f.tar.gz nvim-lspconfig-8350b8cdef977ac8ff399d1db422431191ab405f.tar.bz2 nvim-lspconfig-8350b8cdef977ac8ff399d1db422431191ab405f.tar.lz nvim-lspconfig-8350b8cdef977ac8ff399d1db422431191ab405f.tar.xz nvim-lspconfig-8350b8cdef977ac8ff399d1db422431191ab405f.tar.zst nvim-lspconfig-8350b8cdef977ac8ff399d1db422431191ab405f.zip | |
feat: vectorcode-server (#3660)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/configs/vectorcode_server.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lua/lspconfig/configs/vectorcode_server.lua b/lua/lspconfig/configs/vectorcode_server.lua new file mode 100644 index 00000000..c9b8b1be --- /dev/null +++ b/lua/lspconfig/configs/vectorcode_server.lua @@ -0,0 +1,15 @@ +return { + default_config = { + cmd = { 'vectorcode-server' }, + root_dir = vim.fs.root(0, { '.vectorcode', '.git' }), + single_file_support = false, + settings = {}, + }, + docs = { + description = [[ +https://github.com/Davidyz/VectorCode + +A Language Server Protocol implementation for VectorCode, a code repository indexing tool. + ]], + }, +} |
