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

8 lines
136 B
Fish
Raw Normal View History

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