dotfiles/zsh/funcs/ls
Anthony Cicchetti 073a40631b lsd
2020-11-10 10:31:15 -05:00

9 lines
176 B
Text

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