From 552e9c6e47baaafe152b8215b932a136721380a4 Mon Sep 17 00:00:00 2001 From: Starfall Date: Thu, 15 Dec 2022 11:19:37 -0600 Subject: zsh: add colors to tree one of these days we might actually set LS_COLORS --- .config/zsh/utils.zsh | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.config') 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' -- cgit