diff options
author | Doan Truong Thi <t@thi.im> | 2014-11-21 10:07:23 +0900 |
---|---|---|
committer | Doan Truong Thi <t@thi.im> | 2014-11-21 10:07:23 +0900 |
commit | b6b1dd3cd713751c5295b8346af071b420a99f87 (patch) | |
tree | 1691347fd5f4c1cded6a068af6e823d7d9cdcec7 /templates | |
parent | 7f07facf41e97d0de250f565d5e514f1e6c998a2 (diff) | |
download | zsh-b6b1dd3cd713751c5295b8346af071b420a99f87.tar.gz zsh-b6b1dd3cd713751c5295b8346af071b420a99f87.tar.bz2 zsh-b6b1dd3cd713751c5295b8346af071b420a99f87.zip |
Fix Yosemite broken zsh where $PATH var does not get appended correctly.
Sourcing oh-my-zsh immediately after export PATH.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/zshrc.zsh-template | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template index a12eca2a0..763288dfd 100644 --- a/templates/zshrc.zsh-template +++ b/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 |