Config lazygit

This commit is contained in:
Hadi 2024-10-15 02:45:32 +02:00
parent afe8e81bf6
commit ff2d397191

View File

@ -1,6 +1,24 @@
{ { config, lib, ... }:
let
transparentButtons = config.var.theme.bar.transparentButtons;
accent = "#${config.lib.stylix.colors.base0D}";
muted = "#${config.lib.stylix.colors.base03}";
in {
programs.lazygit = { programs.lazygit = {
enable = true; enable = true;
settings = { }; settings = lib.mkForce {
gui = {
theme = {
activeBorderColor = [ accent "bold" ];
inactiveBorderColor = [ muted ];
};
showListFooter = false;
showRandomTip = false;
showCommandLog = false;
showBottomLine = false;
nerdFontsVersion = "3";
};
};
}; };
} }