浏览代码

Fix Yosemite broken zsh where $PATH var does not get appended correctly.

Sourcing oh-my-zsh immediately after export PATH.
Doan Truong Thi 10 年之前
父节点
当前提交
b6b1dd3cd7
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      templates/zshrc.zsh-template

+ 2 - 2
templates/zshrc.zsh-template

@@ -47,13 +47,13 @@ ZSH_THEME="robbyrussell"
 # Add wisely, as too many plugins slow down shell startup.
 plugins=(git)
 
-source $ZSH/oh-my-zsh.sh
-
 # User configuration
 
 export PATH=$HOME/bin:/usr/local/bin:$PATH
 # export MANPATH="/usr/local/man:$MANPATH"
 
+source $ZSH/oh-my-zsh.sh
+
 # You may need to manually set your language environment
 # export LANG=en_US.UTF-8