marleyos/home/programs/lazygit.nix

19 lines
329 B
Nix
Raw Normal View History

{ ... }:
{
2024-11-02 13:23:03 -07:00
programs.lazygit = {
enable = true;
settings = {
gui.nerdFontsVersion = 3;
git.paging = {
colorArg = "always";
2024-11-02 16:49:48 -07:00
# TODO: only set this if delta is installed
2024-11-02 13:23:03 -07:00
pager = "delta --paging=never --features=arctic-fox";
};
os.editPreset = "nvim-remote";
};
};
}