mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
12 lines
293 B
Lua
12 lines
293 B
Lua
---@brief
|
|
--- https://github.com/Davidyz/VectorCode
|
|
---
|
|
--- A Language Server Protocol implementation for VectorCode, a code repository indexing tool.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'vectorcode-server' },
|
|
root_dir = vim.fs.root(0, { '.vectorcode', '.git' }),
|
|
settings = {},
|
|
}
|