From 97fa5a1dc3752b35579fb2870926a624f9970241 Mon Sep 17 00:00:00 2001 From: eukaryote Date: Thu, 17 Apr 2014 08:30:18 -0700 Subject: [PATCH] fix utility module dircolors bug when launching zsh if SHELL is csh --- modules/utility/init.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/utility/init.zsh b/modules/utility/init.zsh index 2c34a74d..7546c2aa 100644 --- a/modules/utility/init.zsh +++ b/modules/utility/init.zsh @@ -66,9 +66,9 @@ if is-callable 'dircolors'; then if zstyle -t ':prezto:module:utility:ls' color; then if [[ -s "$HOME/.dir_colors" ]]; then - eval "$(dircolors "$HOME/.dir_colors")" + eval "$(dircolors -b "$HOME/.dir_colors")" else - eval "$(dircolors)" + eval "$(dircolors -b)" fi alias ls="$aliases[ls] --color=auto"