27 lines
729 B
Nix
27 lines
729 B
Nix
{...}: {
|
|
programs.lazygit = {
|
|
enable = true;
|
|
settings = {
|
|
gui = {
|
|
showFileTree = true;
|
|
showCommandLog = false;
|
|
showIcons = true;
|
|
theme = {
|
|
lightTheme = false;
|
|
activeBorderColor = ["#a6da95" "bold"];
|
|
inactiveBorderColor = ["#cad3f5"];
|
|
optionsTextColor = ["#8aadf4"];
|
|
selectedLineBgColor = ["#363a4f"];
|
|
selectedRangeBgColor = ["#363a4f"];
|
|
cherryPickedCommitBgColor = ["#8bd5ca"];
|
|
cherryPickedCommitFgColor = ["#8aadf4"];
|
|
unstagedChangesColor = ["red"];
|
|
};
|
|
};
|
|
update.method = "never";
|
|
promptToReturnFromSubprocess = false;
|
|
notARepository = "quit";
|
|
};
|
|
};
|
|
}
|