aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/v_analyzer.lua
blob: 14e5b39bc430466ebd94b2921f92ace5cf130d86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
---@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' },
}