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