git: add more settings from the internet
Alan Pearce alan@alanpearce.eu
Tue, 25 Feb 2025 20:47:17 +0100
1 files changed, 13 insertions(+), 0 deletions(-)
jump to
M user/settings/git.nix → user/settings/git.nix
@@ -22,6 +22,9 @@ extraConfig = { init = { defaultBranch = "main"; }; + apply = { + whitespace = "fix"; + }; advice = { addEmptyPathspec = false; detachedHead = false; @@ -33,12 +36,15 @@ user = "alanpearce"; }; core = { commitGraph = true; + autocrlf = "input"; + safecrlf = true; }; commit = { verbose = true; }; pull = { rebase = true; + ff = "only"; }; fetch = { prune = true; @@ -64,9 +70,13 @@ }; diff = { algorithm = "histogram"; colorMoved = "plain"; + colorMovedWS = "allow-indentation-change"; mnemonicPrefix = true; renames = true; }; + format = { + pretty = "fuller"; + }; grep = { patternType = "perl"; }; @@ -75,6 +85,9 @@ autoSetupMerge = true; }; branch = { sort = "committerdate"; + }; + log = { + date = "iso-local"; }; tag = { sort = "version:refname";