dotfiles/.config/fish/functions/ll.fish

8 lines
136 B
Fish

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