feat: lazygit

jenkins
jolheiser 2023-08-07 12:28:35 -05:00
parent f34f41d8a7
commit 6b8f19738b
Signed by: jolheiser
GPG Key ID: B853ADA5DA7BBF7A
3 changed files with 21 additions and 0 deletions

View File

@ -15,6 +15,7 @@
./gtk.nix
./helix.nix
./jq.nix
./lazygit.nix
./nushell.nix
./oh-my-posh.nix
./spotifyd.nix

Binary file not shown.

20
apps/lazygit.nix 100644
View File

@ -0,0 +1,20 @@
{
programs.lazygit = {
enable = true;
settings = {
nerdFontsVersion = "3";
update.method = "never";
gui.theme = {
lightTheme = false;
activeBorderColor = ["#a6e3a1" "bold"];
inactiveBorderColor = ["#cdd6f4"];
optionsTextColor = ["#89b4fa"];
selectedLineBgColor = ["#313244"];
selectedRangeBgColor = ["#313244"];
cherryPickedCommitBgColor = ["#94e2d5"];
cherryPickedCommitFgColor = ["#89b4fa"];
unstagedChangesColor = ["#f38ba8"];
};
};
};
}