From 36ec5ef63cd7169df5f4fc52d486ce6999206d83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Sat, 8 Mar 2025 01:19:28 -0300 Subject: [PATCH] git: update config --- user/git.nix | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/user/git.nix b/user/git.nix index bfc85c1..9e76e01 100644 --- a/user/git.nix +++ b/user/git.nix @@ -18,15 +18,40 @@ in email = mail.personal.user; }; init.defaultBranch = "main"; + core = { + fsmonitor = true; + untrackedCache = true; + }; commit.verbose = true; - push.autoSetupRemote = true; + fetch = { + prune = true; + pruneTags = true; + all = true; + }; + push = { + autoSetupRemote = true; + default = "simple"; + followTags = true; + }; pull.rebase = true; - merge.conflictStyle = "diff3"; - rerere.enabled = true; + tag.sort = "version:refname"; + merge.conflictStyle = "zdiff3"; + rerere = { + enabled = true; + autoupdate = true; + }; + branch.sort = "-committerdate"; + diff = { + algorithm = "histogram"; + colorMoved = "plain"; + mnemonicPrefix = true; + renames = true; + }; rebase = { abbreviateCommands = true; autoSquash = true; autoStash = true; + updateRefs = true; }; pager = { log = "${pkgs._diffr}/bin/_diffr | ${pkgs.kak-pager}/bin/kak-pager";