Git: update config

This commit is contained in:
Filippo Berto 2025-03-04 17:47:59 +01:00
parent 340bb92f25
commit fd7740859a
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED

View file

@ -100,12 +100,14 @@ in
# }; # };
extraConfig = { extraConfig = {
"add.interactive".useBuiltin = false; "add.interactive".useBuiltin = false;
credential.helper = "libsecret"; branch.sort = "-committerdate";
column.ui = "auto";
commit.gpgSign = true; commit.gpgSign = true;
core = { core = {
editor = "hx"; editor = "hx";
fsmonitor = true; fsmonitor = true;
}; };
credential.helper = "libsecret";
delta = { delta = {
line-numbers = true; line-numbers = true;
navigate = true; navigate = true;
@ -113,6 +115,7 @@ in
wrap-max-lines = "unlimited"; wrap-max-lines = "unlimited";
}; };
diff = { diff = {
algorithm = "historgram";
colorMoved = "default"; colorMoved = "default";
guitool = "meld"; guitool = "meld";
tool = "meld"; tool = "meld";
@ -124,12 +127,15 @@ in
tool = "meld"; tool = "meld";
}; };
pull.rebase = true; pull.rebase = true;
rebase.autoStash = true; rebase = {
rebase.autoSquash = true; autoStash = true;
autoSquash = true;
};
rerere = { rerere = {
enabled = true; enabled = true;
autoUpdate = true; autoUpdate = true;
}; };
tag.sort = "version:refname";
user.signingKey = "berto.f@protonmail.com"; user.signingKey = "berto.f@protonmail.com";
}; };
lfs.enable = true; lfs.enable = true;