Adds lazygit config
This commit is contained in:
parent
46aef5a3c5
commit
7f97ee1031
2 changed files with 24 additions and 0 deletions
|
|
@ -17,6 +17,7 @@
|
||||||
./modules/fish
|
./modules/fish
|
||||||
./modules/wezterm
|
./modules/wezterm
|
||||||
./modules/nvim
|
./modules/nvim
|
||||||
|
./modules/lazygit
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
|
||||||
23
home/modules/lazygit/default.nix
Normal file
23
home/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