nixvim/plugins/lang/helm.nix
Lander Van den Bulcke e82bd15027
fix: disable yamlls
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-12-18 10:39:00 +01:00

8 lines
100 B
Nix

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