aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/vls.lua
blob: f92981a460cbf02e1914132dfbfdac40a81d4f7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---@brief
---
--- https://github.com/vlang/vls
---
--- V language server.
---
--- `v-language-server` can be installed by following the instructions [here](https://github.com/vlang/vls#installation).

---@type vim.lsp.Config
return {
  cmd = { 'v', 'ls' },
  filetypes = { 'v', 'vlang' },
  root_markers = { 'v.mod', '.git' },
}