mirror of
https://github.com/Andrey0189/nixos-config-reborn.git
synced 2025-09-15 10:06:00 +03:00
15 lines
292 B
Nix
15 lines
292 B
Nix
{
|
|
programs.lazygit = {
|
|
enable = true;
|
|
settings = {
|
|
gui.showIcons = true;
|
|
gui.theme = {
|
|
lightTheme = false;
|
|
activeBorderColor = [ "green" "bold" ];
|
|
inactiveBorderColor = [ "grey" ];
|
|
selectedLineBgColor = [ "blue" ];
|
|
};
|
|
};
|
|
};
|
|
}
|