diff options
author | Matt Singleton <matthew.j.singleton@gmail.com> | 2011-06-13 17:39:20 -0400 |
---|---|---|
committer | Matt Singleton <matthew.j.singleton@gmail.com> | 2011-06-13 17:39:20 -0400 |
commit | 9475f8dcab9496760ffe0636c8f757f2d6f7f410 (patch) | |
tree | 97b12495e2d49200b5fbe8cce2d3c0683ea2b742 /zsh | |
parent | a5d2ab1158bb3daef75549a6c1dd1010050c82bd (diff) |
drop multihardlinks since there's a version incompatability
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/appearance.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zsh/appearance.zsh b/zsh/appearance.zsh index 97d14b4..de0232b 100644 --- a/zsh/appearance.zsh +++ b/zsh/appearance.zsh @@ -5,12 +5,12 @@ if [ -e /usr/local/bin/gls ]; then # if GNU ls is installed (e.g. on BSD), use it alias ls='/usr/local/bin/gls --color=tty' - export LS_COLORS="rs=0:di=34:ln=36:mh=00:pi=40;33:so=35:do=35:bd=40;33:cd=40;33:or=40;31:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=32" + export LS_COLORS="rs=0:di=34:ln=36:pi=40;33:so=35:do=35:bd=40;33:cd=40;33:or=40;31:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=32" 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' - export LS_COLORS="rs=0:di=34:ln=36:mh=00:pi=40;33:so=35:do=35:bd=40;33:cd=40;33:or=40;31:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=32" + export LS_COLORS="rs=0:di=34:ln=36:pi=40;33:so=35:do=35:bd=40;33:cd=40;33:or=40;31:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=32" else alias ls='ls -G' export LSCOLORS="exgxbxdxcxegedxbxgxcxd" |