14 lines
329 B
Lua
14 lines
329 B
Lua
---@brief
|
|
---
|
|
--- 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).
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'v', 'ls' },
|
|
filetypes = { 'v', 'vlang' },
|
|
root_markers = { 'v.mod', '.git' },
|
|
}
|