Add helm LSP

This commit is contained in:
Valeriy Filippov
2026-03-11 11:45:41 +03:00
parent 304a31c1bf
commit 7ee242ab9a
4 changed files with 49 additions and 26 deletions

13
nvim/lsp/helmls.lua Normal file
View File

@@ -0,0 +1,13 @@
-- https://github.com/neovim/nvim-lspconfig/blob/master/lsp/helm_ls.lua
return {
cmd = { "helm_ls", "serve" },
filetypes = { "helm", "yaml.helm-values" },
root_markers = { "Chart.yaml" },
capabilities = {
workspace = {
didChangeWatchedFiles = {
dynamicRegistration = true,
},
},
},
}