dotfiles/zsh/funcs/ls
2020-11-22 17:07:00 -05:00

9 lines
181 B
Text

function ls {
if [[ $(whence -p lsd 2> /dev/null) ]]; then
lsd $@
elif [[ $(whence -p exa 2> /dev/null) ]]; then
exa $@
else
/bin/ls $@
fi
}