From 7994ecd86c22103f85527e6e123332e99884d417 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Tue, 9 Sep 2025 17:25:28 +0200 Subject: [PATCH] chore(neovim): replace vim-helm plugin with helm-ls-nvim --- modules/home-manager/cli/neovim/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/home-manager/cli/neovim/default.nix b/modules/home-manager/cli/neovim/default.nix index ee3302e..c62c384 100644 --- a/modules/home-manager/cli/neovim/default.nix +++ b/modules/home-manager/cli/neovim/default.nix @@ -205,7 +205,10 @@ in type = "lua"; config = ( builtins.readFile ./files/plugins/nvim-k8s-lsp.lua ); } - vim-helm + { + plugin = helm-ls-nvim; + type = "lua"; + } ]; }; };