add vim language server

pull/2680/head
Panos Sakkos 6 months ago
parent 8c1cd9162c
commit d85124c70b

@ -55,6 +55,7 @@ nvim
- Pyright
- Terraform Language Server
- Typescript Language Server
- VimScript Language Server
- YAML Language Server
## Formatters

@ -66,6 +66,11 @@ lspconfig.tflint.setup {
capabilities = capabilities,
}
lspconfig.vimls.setup {
on_attach = on_attach,
capabilities = capabilities,
}
lspconfig.yamlls.setup {
on_attach = on_attach,
capabilities = capabilities,

@ -23,6 +23,7 @@ M.opts = {
"prettier",
"pyright",
"rubocop",
"vim-language-server",
"yamlfmt",
"yaml-language-server",
},

@ -30,6 +30,7 @@ M.opts = {
"terraform",
"toml",
"tsx",
"vim",
"yaml",
},
}

Loading…
Cancel
Save