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