nixvim/plugins/lang/helm.nix
Lander Van den Bulcke 57f7919fed
fix: disable helm_ls
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-12-18 13:26:04 +01:00

10 lines
125 B
Nix

{ lib, pkgs, ... }:
{
plugins = {
helm.enable = true;
lsp.servers.helm_ls = {
enable = false;
};
};
}