Config lazygit
This commit is contained in:
parent
afe8e81bf6
commit
ff2d397191
@ -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";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user