diff options
| author | Toon Claes <toon@tonotdo.com> | 2009-11-05 20:48:08 +0100 |
|---|---|---|
| committer | Toon Claes <toon@tonotdo.com> | 2009-11-05 20:48:08 +0100 |
| commit | bbef2db92b39c41705e0a3f05da525b5b1eb8901 (patch) | |
| tree | af675ef3e91332fff6e2fa1835bc50381fa075f2 /lib | |
| parent | 08fcf7dc393d6254fdcd7eef26d3f4ddd1c53a6c (diff) | |
| download | zsh-bbef2db92b39c41705e0a3f05da525b5b1eb8901.tar.gz zsh-bbef2db92b39c41705e0a3f05da525b5b1eb8901.tar.bz2 zsh-bbef2db92b39c41705e0a3f05da525b5b1eb8901.zip | |
parse error fix
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/appearance.zsh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/appearance.zsh b/lib/appearance.zsh index c9bd25d81..ffee52b5e 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 |
