dotfiles/bin/delta-wrapper

9 lines
313 B
Bash
Executable file

#!/bin/sh
# This wrapper is intended to be used as pager for git:
# - Use `git-delta` if installed.
# - Otherwise, fall back to `less`.
command -v delta >/dev/null 2>&1 && exec delta --true-color=always "$@"
# Consume option that would confuse `less`.
[ "$1" = "--side-by-side" ] && shift
exec less -F -X "$@"