about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--.config/zsh/utils.zsh6
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'