nixfleet/hmModules/helix/default.nix
2023-06-16 16:52:15 +02:00

23 lines
565 B
Nix

{
config,
lib,
...
}: {
programs.helix = {
enable = true;
settings = {
theme = "dracula";
editor = {
indent-guides.render = true;
cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
};
true-color = true; # to make colors coherent when in ssh
};
};
};
home.sessionVariables.EDITOR = lib.mkForce "${config.programs.helix.package}/bin/helix";
programs.nushell.environmentVariables.EDITOR = lib.mkForce config.home.sessionVariables.EDITOR;
}