snowflake/home/lazygit/default.nix

20 lines
520 B
Nix
Raw Normal View History

2023-06-11 02:08:06 -04: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 = {
2023-04-23 17:45:37 -04:00
lightTheme = false;
activeBorderColor = ["#a6e3a1" "bold"];
inactiveBorderColor = ["#cdd6f4"];
optionsTextColor = ["#89b4fa"];
selectedLineBgColor = ["#313244"];
selectedRangeByColor = ["#313244"];
cherryPickedCommitBgColor = ["#94e2d5"];
cherryPickedCommitFgColor = ["#89b4fa"];
unstagedChangesColor = ["red"];
2023-03-31 21:05:57 -04:00
};
2023-02-03 10:32:33 -05:00
};
};
}