blob: ed65e48d5189413eab51f1a71efc6fd0993dcc27 (
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-analyzer' },
filetypes = { 'v', 'vsh', 'vv' },
root_dir = util.root_pattern('v.mod', '.git'),
},
docs = {
description = [[
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).
]],
},
}
|