snowflake/home/lazygit/default.nix

22 lines
536 B
Nix
Raw Normal View History

2023-02-03 10:32:33 -05:00
{
2023-03-11 21:28:37 -05:00
...
}: {
2023-02-03 10:32:33 -05:00
programs.lazygit = {
enable = true;
settings = {
windowSize = "normal";
2023-03-31 21:05:57 -04:00
gui.theme = {
lightTheme = false;
activeBorderColor = [ "#a6e3a1" "bold" ];
inactiveBorderColor = [ "#cdd6f4" ];
optionsTextColor = [ "#89b4fa" ];
selectedLineBgColor = [ "#313244" ];
selectedRangeByColor = [ "#313244" ];
cherryPickedCommitBgColor = [ "#94e2d5" ];
cherryPickedCommitFgColor = [ "#89b4fa" ];
2023-03-31 21:05:57 -04:00
unstagedChangesColor = [ "red" ];
};
2023-02-03 10:32:33 -05:00
};
};
}