nix-config/modules/apps/terminal/helix.nix
2025-06-11 15:00:18 +02:00

24 lines
367 B
Nix

{
config,
lib,
pkgs,
...
}: {
programs.helix = {
enable = true;
settings = {
theme = "catppuccin_macchiato";
editor.cursor-shape = {
normal = "block";
insert = "bar";
select = "underline";
};
};
languages.language = [
{
name = "nix";
auto-format = false;
}
];
};
}