pointfichiers/editor/helix/default.nix
2024-11-14 10:26:02 +01:00

16 lines
333 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
helix
lsp-ai
];
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";
};
}