aboutsummaryrefslogtreecommitdiff
path: root/zsh/appearance.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/appearance.zsh')
-rw-r--r--zsh/appearance.zsh18
1 files changed, 5 insertions, 13 deletions
diff --git a/zsh/appearance.zsh b/zsh/appearance.zsh
index 808a347..fb55827 100644
--- a/zsh/appearance.zsh
+++ b/zsh/appearance.zsh
@@ -1,20 +1,12 @@
#
# colorize shell programs
-# ls (platform dependent)
-if which gls > /dev/null; then
- # if GNU coreutils are installed under the 'g' prefix
- alias ls='gls --color=tty'
- eval `gdircolors ~/.dircolors.conf`
+if ls --color -d . &>/dev/null 2>&1; then
+ alias ls='ls --color=tty'
+ eval `dircolors ~/.dircolors.conf`
else
- # otherwise, detect which version of ls is on the path
- if ls --color -d . &>/dev/null 2>&1; then
- alias ls='ls --color=tty'
- eval `dircolors ~/.dircolors.conf`
- else
- alias ls='ls -G'
- export LSCOLORS="exgxbxdxcxegedxbxgxcxd"
- fi
+ alias ls='ls -G'
+ export LSCOLORS="exgxbxdxcxegedxbxgxcxd"
fi
# grep