summaryrefslogtreecommitdiff
path: root/lib/theme-and-appearance.zsh
diff options
context:
space:
mode:
authorMarc Cornellà <marc.cornella@live.com>2016-10-04 01:25:07 +0200
committerMarc Cornellà <marc.cornella@live.com>2016-10-04 01:27:19 +0200
commit6c08286c8e0ca4d2b48679d2692f0ce4ac443f4c (patch)
tree0bea2164e8c75155b89fea9c33493bbf72af647b /lib/theme-and-appearance.zsh
parentefa7c7b7ff72953368dfaba979e3014826bf1837 (diff)
downloadzsh-6c08286c8e0ca4d2b48679d2692f0ce4ac443f4c.tar.gz
zsh-6c08286c8e0ca4d2b48679d2692f0ce4ac443f4c.tar.bz2
zsh-6c08286c8e0ca4d2b48679d2692f0ce4ac443f4c.zip
Use `$commands[]` to check for command existence
Diffstat (limited to 'lib/theme-and-appearance.zsh')
-rw-r--r--lib/theme-and-appearance.zsh3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/theme-and-appearance.zsh b/lib/theme-and-appearance.zsh
index 585f872e1..43e245e16 100644
--- a/lib/theme-and-appearance.zsh
+++ b/lib/theme-and-appearance.zsh
@@ -19,7 +19,8 @@ then
colorls -G -d . &>/dev/null 2>&1 && alias ls='colorls -G'
else
# For GNU ls, we use the default ls color theme. They can later be overwritten by themes.
- type dircolors >/dev/null 2>&1 && eval "$(dircolors)"
+ (( $+commands[dircolors] )) && eval "$(dircolors)"
+
ls --color -d . &>/dev/null 2>&1 && alias ls='ls --color=tty' || alias ls='ls -G'
fi
fi