helix again

This commit is contained in:
death916 2025-06-05 02:25:42 -07:00
parent aed4ab9105
commit 1b8a771647

View file

@ -66,6 +66,30 @@ in
manix manix
]; ];
programs.helix = {
enable = true;
settings = {
theme = "autumn_night_transparent";
editor.cursor-shape = {
normal = "block";
insert = "bar";
select = "underline";
};
};
};
languages.language = [{
name = "nix";
auto-format = true;
formatter.command = lib.getExe pkgs.nixfmt-rfc-style;
}];
themes = {
autumn_night_transparent = {
"inherits" = "autumn_night";
"ui.background" = { };
};
};
};
programs.git = { programs.git = {
enable = true; enable = true;
userName = "death916"; userName = "death916";