feat(lazygit): Install lazygit

This commit is contained in:
punkfairie 2024-11-02 13:23:03 -07:00
parent 260ba27ffe
commit 7eaf41627b
2 changed files with 18 additions and 0 deletions

View file

@ -38,6 +38,7 @@
./fish
./gh
./hyfetch
./lazygit
./less
./man
./syncthing

17
home/lazygit/default.nix Normal file
View file

@ -0,0 +1,17 @@
{...}: {
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";
};
};
}