21 lines
514 B
Nix
21 lines
514 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
programs.lazygit = {
|
|
enable = true;
|
|
settings = {
|
|
gui = {
|
|
nerdFontsVersion = "3";
|
|
theme = {
|
|
lightTheme = false;
|
|
activeBorderColor = [ "magenta" "bold" ];
|
|
searchingActiveBorderColor = [ "cyan" "bold" ];
|
|
inactiveBorderColor = [ "#807c9f" ];
|
|
optionsTextColor = [ "#807c9f" ];
|
|
selectedLineBgColor = [ "#331531" ];
|
|
inactiveViewSelectedLineBgColor = [ "#1d202f" ];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|