mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:40:06 +08:00
22 lines
477 B
Lua
Vendored
22 lines
477 B
Lua
Vendored
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")]],
|
|
},
|
|
},
|
|
}
|