try helm integration

This commit is contained in:
markus.dieckmann
2025-06-26 08:52:27 +02:00
parent efcbd0be30
commit c6c8c6f5c3
2 changed files with 13 additions and 0 deletions

View File

@ -209,6 +209,16 @@ return {
prismals = {},
gopls = {},
jsonls = {},
helm_ls = {},
yamlls = function()
vim.lsp.on_attach(function(client, buffer)
if vim.bo[buffer].filetype == "helm" then
vim.schedule(function()
vim.cmd("LspStop ++force yamlls")
end)
end
end)
end,
eslint = {
vim.api.nvim_create_autocmd("BufWritePre", {
callback = function()

View File

@ -0,0 +1,3 @@
return {
'towolf/vim-helm'
}