diff --git a/.config/zsh-abbr/user-abbreviations b/.config/zsh-abbr/user-abbreviations index 065e09a408..0a2e8eaa11 100644 --- a/.config/zsh-abbr/user-abbreviations +++ b/.config/zsh-abbr/user-abbreviations @@ -22,7 +22,7 @@ abbr --global comnd='command' abbr --global eixt='exit' ## find -abbr --global lf='exa --all --bytes --classify --color-scale --color=always --git --icons --long --no-permissions --no-user --octal-permissions --time-style=long-iso -- {} +' +abbr --global lf='eza --all --bytes --classify --color-scale --color=always --git --icons --long --no-permissions --no-user --octal-permissions --time-style=long-iso -- {} +' ## help abbr --global ehlp='help' diff --git a/custom/aliases.zsh b/custom/aliases.zsh index 85745e7035..40fb15ab8b 100644 --- a/custom/aliases.zsh +++ b/custom/aliases.zsh @@ -1453,9 +1453,9 @@ identify() { # list files unalias -- 'ls' 2>/dev/null unalias -- 'l' 2>/dev/null -if command exa --color=auto >/dev/null 2>&1; then - alias ls='command exa --color=auto' - alias l='command exa --color=auto --bytes --classify --git --header --icons --long --no-permissions --no-user --octal-permissions --time-style=long-iso' +if command eza --color=auto >/dev/null 2>&1; then + alias ls='command eza --color=auto' + alias l='command eza --color=auto --bytes --classify --git --header --icons --long --no-permissions --no-user --octal-permissions --time-style=long-iso' elif command gls --color=auto >/dev/null 2>&1; then alias ls='command gls --color=auto' alias l='command gls --color=auto -AFgo --time-style=+%4Y-%m-%d\ %l:%M:%S\ %P'