11.stylix/modules/lazygit/hm.nix
NAHO 3fb65013f7 treewide: rename mkTarget's configElements and extraOptions options
Rename mkTarget's 'configElements' argument to 'config' and
'extraOptions' to 'options' to provide a more transparent interface with
the underlying Nixpkgs module system.

(cherry picked from commit 16df6b8448)
2025-12-10 07:14:37 -10:00

27 lines
656 B
Nix

{ mkTarget, ... }:
mkTarget {
name = "lazygit";
humanName = "lazygit";
config =
{ colors }:
{
programs.lazygit.settings.gui.theme = with colors.withHashtag; {
activeBorderColor = [
base0D
"bold"
];
inactiveBorderColor = [ base03 ];
searchingActiveBorderColor = [
base04
"bold"
];
optionsTextColor = [ base06 ];
selectedLineBgColor = [ base03 ];
cherryPickedCommitBgColor = [ base02 ];
cherryPickedCommitFgColor = [ base03 ];
unstagedChangesColor = [ base08 ];
defaultFgColor = [ base05 ];
};
};
}