snowflake/home/programs/terminal/lazygit/default.nix

22 lines
584 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;
2024-04-17 23:53:27 -04:00
activeBorderColor = ["#c0caf5" "bold"];
2023-11-24 04:23:49 -05:00
inactiveBorderColor = ["#f7768e"];
2024-04-17 23:53:27 -04:00
optionsTextColor = ["#f7768e"];
selectedLineBgColor = ["#565f89"];
2023-11-24 04:23:49 -05:00
selectedRangeByColor = ["#24283b"];
2023-04-23 17:45:37 -04:00
cherryPickedCommitBgColor = ["#94e2d5"];
cherryPickedCommitFgColor = ["#89b4fa"];
unstagedChangesColor = ["red"];
2023-11-24 04:23:49 -05:00
showRandomTip = false;
animateExplosion = true;
2023-03-31 21:05:57 -04:00
};
2023-02-03 10:32:33 -05:00
};
};
}