.zshrc: Get rid of private bin check

I don't use one, never have. I'm sick of all these conditionals running
during shell initialization—my zsh takes several seconds to start!
This commit is contained in:
Alan Orth 2018-01-14 12:55:40 +02:00
parent 2551bb447f
commit ee6ae2f178
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 0 additions and 3 deletions

3
.zshrc
View File

@ -62,9 +62,6 @@ export PAGER=less
# Enable node version manager (nvm)
[[ -s ~/.nvm/nvm.sh ]] && . ~/.nvm/nvm.sh
# If a private bin directory exists, add it to PATH
[[ -d ~/bin ]] && PATH=$PATH:~/bin
# If a binary go distribution exists, add it to PATH
# From here: http://golang.org/dl/
if [[ -d ~/Downloads/go ]]; then