blob: a6a5ac4bf70bf45f98fce7a3842185cf76ad1a6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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")]],
},
},
}
|