22 lines
591 B
Nix
22 lines
591 B
Nix
|
{
|
||
|
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";
|
||
|
}
|