nixosConfigurations.common: add kotlin LSP to helix

This commit is contained in:
L-Nafaryus 2025-05-13 08:21:50 +05:00
parent 65f43dafaa
commit c45fc772c4
Signed by: L-Nafaryus
GPG Key ID: 553C97999B363D38

View File

@ -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";
};
};
};
};