From bbef2db92b39c41705e0a3f05da525b5b1eb8901 Mon Sep 17 00:00:00 2001 From: Toon Claes Date: Thu, 5 Nov 2009 20:48:08 +0100 Subject: [PATCH] parse error fix --- lib/appearance.zsh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/appearance.zsh b/lib/appearance.zsh index c9bd25d8..ffee52b5 100644 --- a/lib/appearance.zsh +++ b/lib/appearance.zsh @@ -4,7 +4,8 @@ export LSCOLORS="Gxfxcxdxbxegedabagacad" #export LS_COLORS # Enable ls colors -if [ "$DISABLE_LS_COLORS" != "true" ] then +if [ "$DISABLE_LS_COLORS" != "true" ] +then # Find the option for using colors in ls, depending on the version: Linux or BSD ls --color -d . &>/dev/null 2>&1 && alias ls='ls --color=tty' || alias ls='ls -G' fi