dotfiles/fish/.config/fish/functions/cat.fish

8 lines
81 B
Fish
Raw Normal View History

2018-09-14 07:31:13 +00:00
function cat
if type -q bat >/dev/null
bat $argv
else
command cat $argv
end
end