marleyos/home/lazygit/default.nix

18 lines
326 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";
# TODO only set this if delta is installed
pager = "delta --paging=never --features=arctic-fox";
};
os.editPreset = "nvim-remote";
};
};
}