home: git: use diff-highlight in interactive diffs

Now even `git log -p` and `git add -p` can use the more readable diffs.
This commit is contained in:
Bruno BELANYI 2021-11-29 13:13:43 +01:00
parent d86ff6192c
commit 48a9f9b11e

View file

@ -3,6 +3,7 @@ let
cfg = config.my.home.git;
inherit (lib.my) mkMailAddress;
diff-highlight = "${pkgs.gitAndTools.gitFull}/share/git/contrib/diff-highlight/diff-highlight";
in
{
options.my.home.git = with lib.my; {
@ -99,15 +100,15 @@ in
defaultBranch = "main";
};
pager =
let
diff-highlight = "${pkgs.gitAndTools.gitFull}/share/git/contrib/diff-highlight/diff-highlight";
in
{
diff = "${diff-highlight} | less";
log = "${diff-highlight} | less";
show = "${diff-highlight} | less";
};
interactive = {
diffFilter = "${diff-highlight}";
};
pager = {
diff = "${diff-highlight} | less";
log = "${diff-highlight} | less";
show = "${diff-highlight} | less";
};
pull = {
# Avoid useless merge commits