mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
13 lines
203 B
Nix
13 lines
203 B
Nix
_: {
|
|
programs.lazygit = {
|
|
enable = true;
|
|
settings = {
|
|
git = {
|
|
overrideGpg = true;
|
|
pagers = [
|
|
{pager = "delta --paging=never";}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|