snowflake/home/lazygit/default.nix

22 lines
533 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 = [ "#a6d189" "bold" ];
inactiveBorderColor = [ "#c6d0f5" ];
optionsTextColor = [ "#8caae" ];
selectedLineBgColor = [ "#414559" ];
selectedRangeByColor = [ "414559" ];
cherryPickedCommitBgColor = [ "81c8be" ];
cherryPickedCommitFgColor = [ "#8caaee" ];
unstagedChangesColor = [ "red" ];
};
2023-02-03 10:32:33 -05:00
};
};
}