splits out configuration into central modules
This commit is contained in:
parent
58ffb417dd
commit
b44654b9a2
63 changed files with 20 additions and 20 deletions
23
modules/lazygit/default.nix
Normal file
23
modules/lazygit/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ config, ... }:
|
||||
|
||||
{
|
||||
programs.lazygit = {
|
||||
enable = true;
|
||||
settings = {
|
||||
gui = {
|
||||
nerdFontsVersion = "3";
|
||||
theme = {
|
||||
selectedLineBgColor = [ "#332d41" ];
|
||||
searchingActiveBorderColor = [ "#31748f" "bold" ];
|
||||
optionsTextColor = [ "#ebbcba" ];
|
||||
inactiveBorderColor = [ "#6e6a86" ];
|
||||
defaultFgColor = [ "#e0def4" ];
|
||||
cherryPickedCommitFgColor = [ "#ebbcba" ];
|
||||
cherryPickedCommitBgColor = [ "#e0def4" ];
|
||||
activeBorderColor = [ "#31748f" "bold" ];
|
||||
unstagedChangesColor = [ "#eb6f92" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue