feat(git): add difft aliases for diff, log, show

Amolith created

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.

Change summary

dot_config/git/config.tmpl | 3 +++
1 file changed, 3 insertions(+)

Detailed changes

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