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