pointfichiers/editor/helix/default.nix

17 lines
333 B
Nix
Raw Normal View History

{pkgs, ...}: {
2024-11-14 10:26:02 +01:00
home.packages = with pkgs; [
helix
lsp-ai
2024-09-16 14:13:01 +02:00
];
home.file = {
".config/helix/config.toml".source = ./config.toml;
".config/helix/languages.toml".source = ./languages.toml;
".config/helix/themes/jaaj.toml".source = ./themes/jaaj.toml;
};
home.sessionVariables = {
EDITOR = "hx";
};
2024-09-16 14:13:01 +02:00
}