nixfleet/hmModules/helix/default.nix
Andrea Ciceri 9e38d06d55
Some checks failed
/ test (push) Has been cancelled
Switch to catppuccin
2024-05-17 16:08:36 +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
};
};
};
}