aboutsummaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorMatt Singleton <matt@xcolour.net>2012-01-25 19:41:24 +0000
committerMatt Singleton <matt@xcolour.net>2012-01-25 19:41:24 +0000
commitb13d5a109497279e97135e4c34f05e39d179f377 (patch)
tree5cd18ce67292adbcd6852445e72e49d8df1ffd96 /zsh
parent89d708b9052b08f2f4f2e1365bac38edb5121d62 (diff)
use the right dircolors on linux
Diffstat (limited to 'zsh')
-rw-r--r--zsh/appearance.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/zsh/appearance.zsh b/zsh/appearance.zsh
index c1c18a3..f60ddc4 100644
--- a/zsh/appearance.zsh
+++ b/zsh/appearance.zsh
@@ -10,7 +10,7 @@ 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 `gdircolors ~/.dircolors.conf`
+ eval `dircolors ~/.dircolors.conf`
else
alias ls='ls -G'
export LSCOLORS="exgxbxdxcxegedxbxgxcxd"