aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/server_configurations/vls.lua
blob: 1d61c938a5b2937b72d9b3ca096992cdd74a8b2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
local util = require 'lspconfig.util'

return {
  default_config = {
    cmd = { 'v', 'ls' },
    filetypes = { 'v', 'vlang' },
    root_dir = util.root_pattern('v.mod', '.git'),
  },
  docs = {
    description = [[
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).
```
]],
    default_config = {
      root_dir = [[root_pattern("v.mod", ".git")]],
    },
  },
}