diff options
author | Starfall <us@starfall.systems> | 2022-12-15 11:19:37 -0600 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2022-12-15 11:19:37 -0600 |
commit | 552e9c6e47baaafe152b8215b932a136721380a4 (patch) | |
tree | 9fc9ec4e229ab61f54c9b8bb56be2022e0e42b0b /.config | |
parent | 5f2a3ea313fd422ed166aa1ce15c748cb0ad6c54 (diff) |
zsh: add colors to tree
one of these days we might actually set LS_COLORS
Diffstat (limited to '.config')
-rw-r--r-- | .config/zsh/utils.zsh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.config/zsh/utils.zsh b/.config/zsh/utils.zsh index e368ea0..25974ca 100644 --- a/.config/zsh/utils.zsh +++ b/.config/zsh/utils.zsh @@ -34,6 +34,11 @@ else alias ll='ls -hoA' fi +# tree +if has tree; then + alias tree='tree -C' +fi + # mkdir alias mkdir='mkdir -p' |