diff --git a/home/programs/lazygit/default.nix b/home/programs/lazygit/default.nix index 7b75a6d..55c5bb1 100644 --- a/home/programs/lazygit/default.nix +++ b/home/programs/lazygit/default.nix @@ -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 = { enable = true; - settings = { }; + settings = lib.mkForce { + gui = { + theme = { + activeBorderColor = [ accent "bold" ]; + inactiveBorderColor = [ muted ]; + }; + showListFooter = false; + showRandomTip = false; + showCommandLog = false; + showBottomLine = false; + nerdFontsVersion = "3"; + }; + }; }; }