Changes to lazygit

This commit is contained in:
2025-11-29 16:57:54 +01:00
parent 3b505d18f2
commit fd1a577878

View File

@@ -3,10 +3,12 @@
config, config,
lib, lib,
... ...
}: let }:
let
accent = "#${config.lib.stylix.colors.base0D}"; accent = "#${config.lib.stylix.colors.base0D}";
muted = "#${config.lib.stylix.colors.base03}"; muted = "#${config.lib.stylix.colors.base03}";
in { in
{
programs.lazygit = { programs.lazygit = {
enable = true; enable = true;
settings = lib.mkForce { settings = lib.mkForce {
@@ -15,14 +17,15 @@ in {
promptToReturnFromSubprocess = false; promptToReturnFromSubprocess = false;
update.method = "never"; update.method = "never";
git = { git = {
commit.signOff = true;
overrideGpg = true;
parseEmoji = true; parseEmoji = true;
}; };
gui = { gui = {
theme = { theme = {
activeBorderColor = [accent "bold"]; activeBorderColor = [
inactiveBorderColor = [muted]; accent
"bold"
];
inactiveBorderColor = [ muted ];
}; };
showListFooter = false; showListFooter = false;
showRandomTip = false; showRandomTip = false;