nix-config/users/tacocat/programs/default.nix

42 lines
886 B
Nix
Raw Normal View History

2023-10-21 00:49:53 +00:00
{
imports = [
./kitty.nix
];
2023-10-29 06:45:13 +00:00
programs.eza = {
enable = true;
enableAliases = true;
git = true;
};
programs.bat = {
enable = true;
};
2023-11-01 14:21:19 +00:00
programs.gitui = {
enable = true;
theme = ''
(
selected_tab: Reset,
command_fg: DarkGray,
selection_bg: Green,
selection_fg: White,
cmdbar_bg: Blue,
cmdbar_extra_lines_bg: Blue,
disabled_fg: Magenta,
diff_line_add: Green,
diff_line_delete: Red,
diff_file_added: LightGreen,
diff_file_removed: LightRed,
diff_file_moved: LightMagenta,
diff_file_modified: Yellow,
commit_hash: Magenta,
commit_time: LightCyan,
commit_author: Green,
danger_fg: Red,
push_gauge_bg: Blue,
push_gauge_fg: Reset,
tag_fg: LightMagenta,
branch_fg: LightYellow,
)
'';
};
2023-10-21 00:49:53 +00:00
}