feat(zsh): show extended attrs with eza
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m9s

This commit is contained in:
Price Hiller 2024-06-03 22:37:56 -05:00
parent 8cc2f38ec9
commit e0748ec17c
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -4,7 +4,7 @@
### Eza ###
if command -v eza >/dev/null 2>&1; then
alias exa='eza' # This helps some preview commands work from separate repos
alias ls="eza --icons=always --group-directories-first --long --header --octal-permissions --classify --group"
alias ls="eza --icons=always --group-directories-first --long --header --octal-permissions --classify --group --extended"
alias l="ls -alh"
alias ll="l"
tree() {
@ -103,4 +103,4 @@
if ! alias img >/dev/null 2>&1 && command -v swappy >/dev/null 2>&1; then
alias img="swappy -f -"
fi
}
}