mirror of
https://github.com/JanJastrow/.dotfiles.git
synced 2024-11-09 20:54:51 +01:00
Fix eza/lsd detection
This commit is contained in:
parent
102f197d4a
commit
074d7abd35
4
zsh/env
4
zsh/env
@ -13,10 +13,10 @@ export EDITOR="nano"
|
|||||||
|
|
||||||
# set `ll` command - b(etter)ls per default
|
# set `ll` command - b(etter)ls per default
|
||||||
alias ll=bls
|
alias ll=bls
|
||||||
if test -f "$homebrew_path/eza"; then
|
if test -x "$(which eza)"; then
|
||||||
alias ll=eza
|
alias ll=eza
|
||||||
fi
|
fi
|
||||||
if test -f "$homebrew_path/lsd"; then
|
if test -x "$(which lsd)"; then
|
||||||
alias ll=lsd
|
alias ll=lsd
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user