diff --git a/nixosConfigurations/common/hm/helix.nix b/nixosConfigurations/common/hm/helix.nix index b45af62..fba3f15 100644 --- a/nixosConfigurations/common/hm/helix.nix +++ b/nixosConfigurations/common/hm/helix.nix @@ -7,7 +7,7 @@ }: { programs.helix = { enable = true; - extraPackages = with pkgs; [wl-clipboard pyright ruff alejandra bash-language-server]; + extraPackages = with pkgs; [wl-clipboard pyright ruff alejandra bash-language-server kotlin-language-server]; settings = { theme = "gruvbox"; @@ -70,6 +70,9 @@ command = "bash-language-server"; args = ["start"]; }; + kotlin = { + command = "kotlin-language-server"; + }; }; }; };