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

25 lines
424 B
Nix

{
config,
lib,
pkgs,
...
}: {
programs.helix = {
enable = true;
defaultEditor = true;
settings = {
theme = "catppuccin_macchiato";
editor = {
clipboard-provider = "wayland";
cursor-shape = {
normal = "block";
insert = "bar";
select = "underline";
};
soft-wrap.enable = true;
};
};
languages.language = [];
};
}