mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
15 lines
343 B
Lua
15 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' },
|
|
}
|