diff options
author | Starfall <us@starfall.systems> | 2023-12-11 17:23:43 -0600 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2023-12-11 17:23:43 -0600 |
commit | 3640d0c3e4441229d559b812c650c7274222d9c3 (patch) | |
tree | a320eb07eca8249f8929eb5cdf474272e2cc3d9a | |
parent | a06519b240f9bb9517c24217005094df3434d60c (diff) |
zsh: exa -> eza
-rw-r--r-- | .config/zsh/utils.zsh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/zsh/utils.zsh b/.config/zsh/utils.zsh index 79ec19c..adec897 100644 --- a/.config/zsh/utils.zsh +++ b/.config/zsh/utils.zsh @@ -22,9 +22,9 @@ alias fgrep="fgrep $grep_opts" unset grep_opts # ls -if has exa; then - alias ls='exa' - alias ll='exa --long --header --all' +if has eza; then + alias ls='eza' + alias ll='eza --long --header --all' elif ls --color &> /dev/null; then alias ls='ls --color=auto' alias ll='ls -l --almost-all --no-group --human-readable' |