浏览代码

Only set default LS_COLORS if not set before

Also, force the use of Bourne-style shell syntax with `dircolors -b`.
Marc Cornellà 8 年之前
父节点
当前提交
6304a789ab
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      lib/theme-and-appearance.zsh

+ 3 - 1
lib/theme-and-appearance.zsh

@@ -19,7 +19,9 @@ 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.
-    (( $+commands[dircolors] )) && eval "$(dircolors)"
+    if [[ -z "$LS_COLORS" ]]; then
+      (( $+commands[dircolors] )) && eval "$(dircolors -b)"
+    fi
 
     ls --color -d . &>/dev/null 2>&1 && alias ls='ls --color=tty' || alias ls='ls -G'
   fi