From 3640d0c3e4441229d559b812c650c7274222d9c3 Mon Sep 17 00:00:00 2001 From: Starfall Date: Mon, 11 Dec 2023 17:23:43 -0600 Subject: zsh: exa -> eza --- .config/zsh/utils.zsh | 6 +++--- 1 file 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' -- cgit