From 597bb08e399d51cd4aaa7977acfba5d6201472ca Mon Sep 17 00:00:00 2001 From: Jan Jastrow Date: Fri, 8 Sep 2023 02:52:53 +0200 Subject: [PATCH] Move from exa to eza --- zsh/alias | 6 +++--- zsh/env | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/zsh/alias b/zsh/alias index 018ff72..5e2a24c 100644 --- a/zsh/alias +++ b/zsh/alias @@ -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 diff --git a/zsh/env b/zsh/env index b154726..f61fee4 100644 --- a/zsh/env +++ b/zsh/env @@ -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