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

9 lines
112 B
Fish
Raw Normal View History

2018-09-14 07:31:13 +00:00
function cat
2018-11-28 16:32:25 +00:00
if type -q bat >/dev/null
2019-08-01 02:50:04 +00:00
bat -p $argv
2018-11-28 16:32:25 +00:00
else
command cat $argv
end
2018-09-14 07:31:13 +00:00
end
2018-11-28 16:32:25 +00:00