From ee6ae2f178180fb02523ad863c74b30ed402912a Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 14 Jan 2018 12:55:40 +0200 Subject: [PATCH] .zshrc: Get rid of private bin check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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! --- .zshrc | 3 --- 1 file changed, 3 deletions(-) diff --git a/.zshrc b/.zshrc index 995431d..3c5144c 100644 --- a/.zshrc +++ b/.zshrc @@ -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