]> arthur.ath.cx Git - ax-zsh.git/blob - plugins/bat/bat.zshrc
New "bat" plugin
[ax-zsh.git] / plugins / bat / bat.zshrc
1 # AX-ZSH: Alex' Modular ZSH Configuration
2 # trash.zshrc: Setup trash(1)
3
4 # Make sure that "bat(1)" is installed
5 (( $+commands[bat] )) && return 0
6
7 if (( $+commands[batcat] )); then
8         alias bat='batcat'
9         return 0
10 fi
11
12 return 1