blob: 7a560d3401c555083232238ad592b68667832843 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
---@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 = {},
}
|