From c6c8c6f5c345399c30e6cd67df27eab369a34e03 Mon Sep 17 00:00:00 2001 From: "markus.dieckmann" Date: Thu, 26 Jun 2025 08:52:27 +0200 Subject: [PATCH] try helm integration --- nvim/lua/plugins/lsp.lua | 10 ++++++++++ nvim/lua/plugins/vim-helm.lua | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 nvim/lua/plugins/vim-helm.lua diff --git a/nvim/lua/plugins/lsp.lua b/nvim/lua/plugins/lsp.lua index 9440d3d..5c60393 100644 --- a/nvim/lua/plugins/lsp.lua +++ b/nvim/lua/plugins/lsp.lua @@ -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() diff --git a/nvim/lua/plugins/vim-helm.lua b/nvim/lua/plugins/vim-helm.lua new file mode 100644 index 0000000..74456b2 --- /dev/null +++ b/nvim/lua/plugins/vim-helm.lua @@ -0,0 +1,3 @@ +return { + 'towolf/vim-helm' +}