1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00
Files
nixos-config-reborn/home-manager/modules/lazygit.nix
2024-12-05 20:26:25 +05:00

15 lines
292 B
Nix

{
programs.lazygit = {
enable = true;
settings = {
gui.showIcons = true;
gui.theme = {
lightTheme = false;
activeBorderColor = [ "green" "bold" ];
inactiveBorderColor = [ "grey" ];
selectedLineBgColor = [ "blue" ];
};
};
};
}