Files
dotfiles/nvim/lsp/helmls.lua
Valeriy Filippov 7ee242ab9a Add helm LSP
2026-03-11 11:45:41 +03:00

14 lines
303 B
Lua

-- 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,
},
},
},
}