mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-13 19:04:36 +02:00
24 lines
381 B
Lua
24 lines
381 B
Lua
return {
|
|
recommended = function()
|
|
return LazyVim.extras.wants({
|
|
ft = "helm",
|
|
root = "Chart.yaml",
|
|
})
|
|
end,
|
|
|
|
{ "qvalentin/helm-ls.nvim", ft = "helm" },
|
|
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = { ensure_installed = { "helm" } },
|
|
},
|
|
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
opts = {
|
|
servers = {
|
|
helm_ls = {},
|
|
},
|
|
},
|
|
},
|
|
}
|