feat(shell): eza, a modern replacement for ‘ls’

This commit is contained in:
2023-09-20 09:49:21 +03:00
parent 5c74383dda
commit c1dda8a230
2 changed files with 7 additions and 0 deletions

View File

@@ -58,6 +58,11 @@ fi
# Be nice
alias please="sudo "
! have eza && alias ls='ls --color=auto'
have eza && {
alias ls='eza -h -s=type --git --icons --group-directories-first'
}
# Easier navigation: .., ..., ....
alias ..="cd .."
alias ...="cd ../.."

View File

@@ -14,6 +14,8 @@ packages=(
"bkt"
# a structural diff that understands syntax
"difftastic"
# a modern replacement for ls.
"eza"
# A simple, fast and user-friendly alternative to 'find'
"fd-find"
)