helix editor

This commit is contained in:
tristan 2024-01-18 12:08:42 +00:00
parent 80f02f94a9
commit 98ceba8394
2 changed files with 14 additions and 24 deletions

13
home/programs/helix.nix Normal file
View file

@ -0,0 +1,13 @@
{pkgs, ...}: {
programs.helix = {
enable = true;
languages = {
language-server = {
rust-analyzer.command = "${pkgs.rust-analyzer}/bin/rust-analyzer";
nil.command = "${pkgs.nil}/bin/nil";
gopls.command = "${pkgs.gopls}/bin/gopls";
typescript-language-server.command = "${pkgs.nodePackages.typescript-language-server}/bin/typescript-language-server";
};
};
};
}