snowflake/home/lazygit/default.nix
notohh ea9ea5e1dd
All checks were successful
ci/woodpecker/push/checks Pipeline was successful
lazygit: remove unused services
2023-06-23 22:34:41 -04:00

20 lines
520 B
Nix

_: {
programs.lazygit = {
enable = true;
settings = {
windowSize = "normal";
gui.theme = {
lightTheme = false;
activeBorderColor = ["#a6e3a1" "bold"];
inactiveBorderColor = ["#cdd6f4"];
optionsTextColor = ["#89b4fa"];
selectedLineBgColor = ["#313244"];
selectedRangeByColor = ["#313244"];
cherryPickedCommitBgColor = ["#94e2d5"];
cherryPickedCommitFgColor = ["#89b4fa"];
unstagedChangesColor = ["red"];
};
};
};
}