mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
15 lines
329 B
Lua
15 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' },
|
|
}
|