From c45fc772c4cf64c9bca7b5f350bb7bb475cc8409 Mon Sep 17 00:00:00 2001 From: L-Nafaryus Date: Tue, 13 May 2025 08:21:50 +0500 Subject: [PATCH] nixosConfigurations.common: add kotlin LSP to helix --- nixosConfigurations/common/hm/helix.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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"; + }; }; }; };