#!/usr/bin/env zsh # # Author : Dennis Eriksen # File : bat # Created : 2024-10-01 # ################################################################################ # # This file is autoloaded by .zshrc, and actually loaded when executed # ################################################################################ # Simple function to make sure we get some syntax-highlighting by default when # using bat with stdin. Just specify another language manually if you want # something else. # Do we have bat? if have bat; then cmd=bat elif have batcat; then cmd=batcat else print -ru2 -- "Couldn't find bat" return 1 fi # Set a default language if we're piping stuff in # I mostly pipe syslog, so that's a good fit for me if [[ -p /dev/stdin ]]; then command $cmd --language syslog $@ else command $cmd $@ fi # END OF FILE #################################################################