From e95092d174fcbe3099514d77d1eb627a4a8bb5df Mon Sep 17 00:00:00 2001 From: Amolith Date: Wed, 4 Jun 2025 09:59:23 -0600 Subject: [PATCH] feat(git): add difft aliases for diff, log, show Adds aliases 'dl', 'ds', and 'df' to facilitate using 'difft' as the external diff tool for git log, git show, and git diff commands respectively. --- dot_config/git/config.tmpl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dot_config/git/config.tmpl b/dot_config/git/config.tmpl index 29e4c951b57d6c2fa3e9534033b242f5f5dfbeb9..fca1a0ca49df9fcee77dc9b4e8589b921646d861 100644 --- a/dot_config/git/config.tmpl +++ b/dot_config/git/config.tmpl @@ -2,6 +2,9 @@ defaultBranch = main [alias] force-push = push --force-with-lease + dl = -c diff.external=difft log -p --ext-diff + ds = -c diff.external=difft show --ext-diff + df = -c diff.external=difft diff [user] name = Amolith email = amolith@secluded.site