From 0b756ba15faaa482ada6ff8a6d7537d61507887c Mon Sep 17 00:00:00 2001 From: Ruslan Date: Fri, 24 Oct 2025 10:12:46 +0300 Subject: [PATCH] replace helm-ls configuration with the nvim 0.11 --- lua/crentist/lazy/lsp.lua | 23 +++++------------------ 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/lua/crentist/lazy/lsp.lua b/lua/crentist/lazy/lsp.lua index 1d0165e..c5e5953 100644 --- a/lua/crentist/lazy/lsp.lua +++ b/lua/crentist/lazy/lsp.lua @@ -78,27 +78,14 @@ return { } }) - -- leave it until it works with lsp.config - lspconfig.helm_ls.setup { + vim.lsp.config('helm-ls', { settings = { ['helm-ls'] = { - yamlls = { - enabled = false, - path = "yaml-language-server", - } - } + helmLint = { enabled = false }, + yamlls = { enabled = false }, + }, } - } - -- vim.lsp.config('helm-ls', { - -- settings = { - -- ['helm-ls'] = { - -- yamlls = { - -- path = "yaml-language-server", - -- enabled = false, - -- } - -- } - -- } - -- }) + }) vim.lsp.config('terraformls', { filetypes = { 'terraform', 'terraform-vars', 'tf' }