dotfiles/.config/fish/functions/lal.fish

8 lines
135 B
Fish
Raw Normal View History

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