fix typo'd var; otherwise colors would never apply

This commit is contained in:
Matt Hamilton 2017-11-29 18:47:37 -05:00
parent f6304a06cc
commit abbeeb9d37
1 changed files with 1 additions and 4 deletions

View File

@ -6,12 +6,10 @@
# Colours
#
if (( terminfo[colors] >= 8 )); then
if (( ${terminfo[colors]} >= 8 )); then
if [[ ${OSTYPE} == (*bsd*|darwin*) ]]; then
# BSD
(( ! ${+LSCOLORS} )) && export LSCOLORS='exfxcxdxbxGxDxabagacad'
if [[ ${OSTYPE} == openbsd* ]]; then
# stock OpenBSD ls does not support colours at all, but colorls does.
if (( ${+commands[colorls]} )); then
@ -24,7 +22,6 @@ if (( terminfo[colors] >= 8 )); then
(( ! ${+GREP_COLOR} )) && export GREP_COLOR='37;45'
else
# GNU
(( ! ${+LS_COLORS} )) && if [[ ${+commands[dircolors]} -ne 0 && -s ${HOME}/.dir_colors ]]; then
eval "$(dircolors --sh ${HOME}/.dir_colors)"
else