dotfiles/.config/fish/functions/ls.fish

8 lines
124 B
Fish

function ls
if type -q exa
command exa --icons $argv
else
command ls --color=auto $argv
end
end