18 lines
326 B
Nix
18 lines
326 B
Nix
|
{...}: {
|
||
|
programs.lazygit = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
gui.nerdFontsVersion = 3;
|
||
|
|
||
|
git.paging = {
|
||
|
colorArg = "always";
|
||
|
# TODO only set this if delta is installed
|
||
|
pager = "delta --paging=never --features=arctic-fox";
|
||
|
};
|
||
|
|
||
|
os.editPreset = "nvim-remote";
|
||
|
};
|
||
|
};
|
||
|
}
|