25 lines
424 B
Nix
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 = [];
|
|
};
|
|
}
|