29 lines
702 B
Nix
29 lines
702 B
Nix
{
|
|
...
|
|
}: {
|
|
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;
|
|
file-picker.hidden = false;
|
|
|
|
statusline = {
|
|
left = ["mode" "spinner" "file-name" "read-only-indicator" "file-modification-indicator"];
|
|
center = [];
|
|
right = ["diagnostics" "selections" "register" "file-encoding" "position" "position-percentage"];
|
|
};
|
|
};
|
|
};
|
|
languages.language = [];
|
|
};
|
|
}
|