Merge branch 'master' into treewide-init-maintainers

This commit is contained in:
NAHO 2025-04-13 19:59:13 +02:00
commit 6d16807fc5
No known key found for this signature in database
GPG key ID: 229CB671D09B95F5
185 changed files with 5077 additions and 3623 deletions

View file

@ -3,9 +3,6 @@
lib,
...
}:
let
colors = config.lib.stylix.colors.withHashtag;
in
{
options.stylix.targets.lazygit.enable =
config.lib.stylix.mkEnableTarget "lazygit" true;
@ -13,22 +10,23 @@ in
config =
lib.mkIf (config.stylix.enable && config.stylix.targets.lazygit.enable)
{
programs.lazygit.settings.gui.theme = {
activeBorderColor = [
colors.base07
"bold"
];
inactiveBorderColor = [ colors.base04 ];
searchingActiveBorderColor = [
colors.base02
"bold"
];
optionsTextColor = [ colors.base06 ];
selectedLineBgColor = [ colors.base03 ];
cherryPickedCommitBgColor = [ colors.base02 ];
cherryPickedCommitFgColor = [ colors.base03 ];
unstagedChangesColor = [ colors.base08 ];
defaultFgColor = [ colors.base05 ];
};
programs.lazygit.settings.gui.theme =
with config.lib.stylix.colors.withHashtag; {
activeBorderColor = [
base07
"bold"
];
inactiveBorderColor = [ base04 ];
searchingActiveBorderColor = [
base02
"bold"
];
optionsTextColor = [ base06 ];
selectedLineBgColor = [ base03 ];
cherryPickedCommitBgColor = [ base02 ];
cherryPickedCommitFgColor = [ base03 ];
unstagedChangesColor = [ base08 ];
defaultFgColor = [ base05 ];
};
};
}

View file

@ -4,4 +4,6 @@
mateusauler
naho
];
name = "Lazygit";
}