replace exa with eza

This commit is contained in:
vonProteus 2024-04-27 17:30:44 +02:00 committed by Paweł Płazieński
parent e02984570b
commit e646ca45cd

4
zshrc
View File

@ -50,8 +50,8 @@ ZDOTDIR=${ZDOTDIR:-$HOME/.zsh}
if command-exists dircolors; then if command-exists dircolors; then
eval "$(dircolors -b)" eval "$(dircolors -b)"
fi fi
if command-exists exa; then if command-exists eza; then
alias ls='exa --git --long --all --time-style long-iso' alias ls='eza --git --long --all --time-style long-iso'
else else
LSOPTS="-lAvF --color=auto" # long mode, show all, natural sort, type squiggles, friendly sizes LSOPTS="-lAvF --color=auto" # long mode, show all, natural sort, type squiggles, friendly sizes
alias ls="ls $LSOPTS" alias ls="ls $LSOPTS"