Fix eza/lsd detection

This commit is contained in:
Jan Jastrow 2024-08-10 22:22:03 +02:00
parent 102f197d4a
commit 074d7abd35

View File

@ -13,10 +13,10 @@ export EDITOR="nano"
# set `ll` command - b(etter)ls per default
alias ll=bls
if test -f "$homebrew_path/eza"; then
if test -x "$(which eza)"; then
alias ll=eza
fi
if test -f "$homebrew_path/lsd"; then
if test -x "$(which lsd)"; then
alias ll=lsd
fi