From ff2d3971910e4a1f2c65e868e679310100332a3b Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Tue, 15 Oct 2024 02:45:32 +0200 Subject: [PATCH] Config lazygit --- home/programs/lazygit/default.nix | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) 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"; + }; + }; }; }