14 lines
343 B
Lua
14 lines
343 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/vlang/v-analyzer
|
|
---
|
|
--- V language server.
|
|
---
|
|
--- `v-analyzer` can be installed by following the instructions [here](https://github.com/vlang/v-analyzer#installation).
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'v-analyzer' },
|
|
filetypes = { 'v', 'vsh', 'vv' },
|
|
root_markers = { 'v.mod', '.git' },
|
|
}
|