mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
7 lines
129 B
Fish
7 lines
129 B
Fish
function cat
|
|
if test -f /usr/bin/bat
|
|
/usr/bin/bat -p --pager=never $argv
|
|
else
|
|
/bin/cat $argv
|
|
end
|
|
end
|