diff options
| author | Blake Romero <blake@developercraft.com> | 2026-03-22 13:22:25 +0000 |
|---|---|---|
| committer | Blake Romero <blake@developercraft.com> | 2026-03-22 13:22:25 +0000 |
| commit | 8ef974e0fb5c36355c55de341c5912911b9cf44b (patch) | |
| tree | 849eb51f61da2e10621aaf25a586b76d809d61d5 | |
| parent | 4969574928c6ed5d11a55310226d561b15466e99 (diff) | |
Disable git repos in eza & customize EZA_COLORS
| -rw-r--r-- | bash_aliases | 4 | ||||
| -rw-r--r-- | bash_profile | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/bash_aliases b/bash_aliases index 975955b..33c1f15 100644 --- a/bash_aliases +++ b/bash_aliases @@ -16,7 +16,9 @@ exists tree && alias tree="tree --dirsfirst" # Eza if exists eza; then - alias ls="eza --group-directories-first --group" + alias ls="eza --group-directories-first \ + --group --smart-group \ + --git-repos --total-size" alias tree="ls --tree" fi diff --git a/bash_profile b/bash_profile index ff2b42a..72be8d5 100644 --- a/bash_profile +++ b/bash_profile @@ -65,3 +65,9 @@ if exists bemenu; then --scb $bg --scf $hl " fi + +# EZA +# See 'man eza_colors' for more info +if exists eza; then + export EZA_COLORS="da=02:gn=02:gu=33:gR=31:uR=31" +fi |
