Skip to content

Commit

Permalink
fix: use lazygit instead of gitui
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnossiom committed Jun 17, 2024
1 parent e52afe7 commit 704f08d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion home-manager/modules/git.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ with lib;
cm = "commit --message";
oups = "commit --amend";

ui = "!${getExe pkgs.gitui}";
# Plain binary ensures it is globally installed
ui = "!lazygit";

rv = "remote --verbose";

Expand Down Expand Up @@ -127,5 +128,7 @@ with lib;
programs.gh.enable = true;

programs.gh-dash.enable = true;

programs.lazygit.enable = true;
};
}

0 comments on commit 704f08d

Please sign in to comment.