From e646ca45cd0b80b2417429c61f2b293467237ee0 Mon Sep 17 00:00:00 2001 From: vonProteus <> Date: Sat, 27 Apr 2024 17:30:44 +0200 Subject: [PATCH] replace exa with eza --- zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zshrc b/zshrc index 7ce2fda..b302668 100644 --- a/zshrc +++ b/zshrc @@ -50,8 +50,8 @@ ZDOTDIR=${ZDOTDIR:-$HOME/.zsh} if command-exists dircolors; then eval "$(dircolors -b)" fi -if command-exists exa; then - alias ls='exa --git --long --all --time-style long-iso' +if command-exists eza; then + alias ls='eza --git --long --all --time-style long-iso' else LSOPTS="-lAvF --color=auto" # long mode, show all, natural sort, type squiggles, friendly sizes alias ls="ls $LSOPTS"