initial commit

This commit is contained in:
2024-07-30 00:09:42 -04:00
commit b2afed60e0
18 changed files with 690 additions and 0 deletions

22
home/lazygit.nix Normal file
View File

@ -0,0 +1,22 @@
{ ... }:
{
programs.lazygit = {
enable = true;
settings = {
gui.theme = {
activeBorderColor = ["#a6e3a1" "bold"];
inactiveBorderColor = ["#a6adc8"];
optionsTextColor = ["#89b4fa"];
selectedLineBgColor = ["#313244"];
selectedRangeBgColor = ["#313244"];
cherryPickedCommitBgColor = ["#45475a"];
cherryPickedCommitFgColor = ["#a6e3a1"];
unstagedChangesColor = ["#f38ba8"];
defaultFgColor = ["#cdd6f4"];
searchingActiveBorderColor = ["#f9e2af"];
};
};
};
}