From e0748ec17c9a6526da91dc83e0a30ab871c19145 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 3 Jun 2024 22:37:56 -0500 Subject: [PATCH] feat(zsh): show extended attrs with `eza` --- .../price/dots/.config/zsh/config/profile/profile/aliases.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/users/price/dots/.config/zsh/config/profile/profile/aliases.zsh b/users/price/dots/.config/zsh/config/profile/profile/aliases.zsh index 2627df83..9f0c783a 100644 --- a/users/price/dots/.config/zsh/config/profile/profile/aliases.zsh +++ b/users/price/dots/.config/zsh/config/profile/profile/aliases.zsh @@ -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 -} \ No newline at end of file +}