Add lazygit

This commit is contained in:
Hadi 2024-05-09 16:44:39 +02:00
parent c4f8d05c0d
commit 8d0216e1fc
2 changed files with 14 additions and 0 deletions

View File

@ -9,5 +9,6 @@
./wofi
./cava
./tmux
./lazygit
];
}

View File

@ -0,0 +1,13 @@
{ config, ... }: {
programs.lazygit = {
enable = true;
settings = {
gui.theme = {
ligthTheme = false;
activeBorderColor = [ "${config.theme.colors.primary-ansi-16}" "bold" ];
inactiveBorderColor = [ "black" ];
selectedLineBgColor = [ "default" ];
};
};
};
}