1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 02:30:04 +08:00
SpaceVim/bundle/nvim-lspconfig/lua/lspconfig/server_configurations/vls.lua

23 lines
472 B
Lua
Raw Normal View History

local util = require 'lspconfig.util'
2021-10-05 15:13:10 +08:00
return {
2021-10-05 15:13:10 +08:00
default_config = {
cmd = { 'vls' },
2021-10-05 15:13:10 +08:00
filetypes = { '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")]],
},
},
}