Move from exa to eza

This commit is contained in:
Jan Jastrow 2023-09-08 02:52:53 +02:00
parent ff8d4a638d
commit 597bb08e39
2 changed files with 5 additions and 5 deletions

View File

@ -11,9 +11,9 @@ elif [[ $platform == 'macOS' ]]; then
alias bls='/bin/ls -lahG'
fi
# Better exa
if [[ -x $(which exa) ]]; then
alias exa='pwd; exa --long --all --all --group-directories-first --git --group'
# Better eza
if [[ -x $(which eza) ]]; then
alias eza='pwd; eza --long --all --all --group-directories-first --git --group'
# --all (2x) to show `.` and `..` directories as well
fi

View File

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