dotfiles/.config/fish/functions/la.fish

8 lines
130 B
Fish
Raw Normal View History

2022-07-07 18:32:27 +02:00
function la
if type -q exa
command exa -a --icons $argv
else
command ls -a --color=auto $argv
end
end