dotfiles/.config/fish/functions/ll.fish
2022-07-07 11:32:27 -05:00

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