nix-config/home/features/cli/lazygit.nix

22 lines
670 B
Nix
Raw Normal View History

2023-12-28 01:20:28 +01:00
{config, ...}: {
2023-12-26 13:59:30 +01:00
programs.lazygit = {
enable = true;
2023-12-28 01:20:28 +01:00
settings = with config.colorScheme.colors; {
gui = {
theme = {
activeBorderColor = ["#${base0D}" "bold"];
inactiveBorderColor = ["#${base05}"];
optionsTextColor = ["#${base0D}"];
selectedLineBgColor = ["${base02}"];
selectedRangeBgColor = ["${base02}"];
cherryPickedCommitBgColor = ["#${base03}"];
cherryPickedCommitFgColor = ["#${base0D}"];
unstagedChangesColor = ["#${base08}"];
defaultFgColor = ["#${base05}"];
searchingActiveBorderColor = ["#${base0A}"];
};
};
};
2023-12-26 13:59:30 +01:00
};
}