feat(git): use improved diff algos

This commit is contained in:
Michael Mandl 2025-02-26 08:20:45 +01:00
parent 7a23d06079
commit 555d229cf1
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2

View file

@ -35,7 +35,6 @@
untrackedCache = true;
};
diff.ignoreSubmodules = "none";
column.ui = "auto";
fetch.parallel = 8;
@ -43,6 +42,14 @@
fetch.recurseSubmodules = true;
commit.verbose = true;
diff = {
algorithm = "histogram";
colorMoved = "plain";
ignoreSubmodules = "none";
mnemonicPrefix = true;
renames = true;
};
format.pretty = "format:%C(yellow)%h %Cblue%>(12)%ad %C(red)%G? %Cgreen%<(7,trunc)%aN%Cred%d %Creset%s";
init.defaultBranch = "main";