From f8cd642555035b60a4439d367c2d91e1c7d1ba42 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 3 Oct 2023 15:38:49 +0200 Subject: [PATCH] git: Remove left-over dsf Diff-so-fancy is replaced by delta. --- git/.local/bin/dsf | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 git/.local/bin/dsf diff --git a/git/.local/bin/dsf b/git/.local/bin/dsf deleted file mode 100755 index 5415d37..0000000 --- a/git/.local/bin/dsf +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env sh -# Pretty git diff display - -# degrade diffs gracefully: -# prefer diff-so-fancy if it is installed, -# otherwise fallback to git's own prettifier, -# if nothing exists just pass it on -dsf() { - if exist diff-so-fancy; then - diff-so-fancy - elif exist /usr/share/git/diff-highlight/diff-highlight; then - /usr/share/git/diff-highlight/diff-highlight - else - cat - fi -} - -dsf