Difftastic relegated to difftool

This commit is contained in:
Anthony Cicchetti 2024-02-20 14:36:45 -05:00
parent b86456d429
commit 6402b1e4e8

View file

@ -6,7 +6,11 @@
}: { }: {
programs.git = { programs.git = {
enable = true; enable = true;
difftastic.enable = true; # Don't use difftastic on git-diff by default
# it makes distributing patches difficult
#
# Instead use difftastic as a difftool
difftastic.enable = false;
userName = "Anthony Cicchetti"; userName = "Anthony Cicchetti";
userEmail = "anthony@anthonycicchetti.com"; userEmail = "anthony@anthonycicchetti.com";
@ -15,6 +19,7 @@
pushall = "!git remote | xargs -L1 git push --all"; pushall = "!git remote | xargs -L1 git push --all";
pr = "!f() { git fetch -fu $${2:-$(git remote |grep ^upstream || echo origin)} refs/pull/$1/head:pr/$1 && git checkout pr/$1; }; f"; pr = "!f() { git fetch -fu $${2:-$(git remote |grep ^upstream || echo origin)} refs/pull/$1/head:pr/$1 && git checkout pr/$1; }; f";
logp = "log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short"; logp = "log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short";
difft = "difftool";
}; };
extraConfig = { extraConfig = {
@ -27,6 +32,17 @@
workers = 0; workers = 0;
}; };
diff = {
tool = "difftastic";
};
difftool = {
prompt = false;
difftastic = {
cmd = "${pkgs.difftastic}/bin/difft --color auto --background light --display side-by-side \"$LOCAL\" \"$REMOTE\"";
};
};
fetch = { fetch = {
prune = true; prune = true;
}; };
@ -35,10 +51,22 @@
pretty = "fuller"; pretty = "fuller";
}; };
help = {
autoCorrect = "prompt";
};
init = {
defaultBranch = "main";
};
log = { log = {
follow = true; follow = true;
}; };
merge = {
conflictStyle = "zdiff3";
};
push = { push = {
autoSetupRemote = true; autoSetupRemote = true;
}; };
@ -47,15 +75,13 @@
rebase = true; rebase = true;
}; };
init = {
defaultBranch = "main";
};
help = {
autoCorrect = "prompt";
};
rebase = { rebase = {
updateRefs = true; updateRefs = true;
}; };
rerere = {
enabled = true;
};
}; };
includes = [ includes = [