nixfleet/hmModules/helix/default.nix
Andrea Ciceri f7302479b3
Some checks failed
/ test (push) Has been cancelled
Switch to catppuccin
2024-06-01 08:39:18 +02:00

17 lines
357 B
Nix

{
programs.helix = {
enable = true;
settings = {
theme = "catppuccin_mocha";
editor = {
indent-guides.render = true;
cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
};
true-color = true; # to make colors coherent when in ssh
};
};
};
}