mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 10:45:49 +02:00
ddb412cdea
Former-commit-id: 8d0216e1fc
14 lines
318 B
Nix
14 lines
318 B
Nix
{ config, ... }: {
|
|
programs.lazygit = {
|
|
enable = true;
|
|
settings = {
|
|
gui.theme = {
|
|
ligthTheme = false;
|
|
activeBorderColor = [ "${config.theme.colors.primary-ansi-16}" "bold" ];
|
|
inactiveBorderColor = [ "black" ];
|
|
selectedLineBgColor = [ "default" ];
|
|
};
|
|
};
|
|
};
|
|
}
|