24 lines
367 B
Nix
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;
|
|
}
|
|
];
|
|
};
|
|
}
|