Added ~/.dotfiles/bin to path

Also removed zsh/lib dir and moved files up a dir
This commit is contained in:
Nick Nisi
2013-01-07 08:29:01 -06:00
parent b3ea8102d6
commit 2503b7ebf9
4 changed files with 3 additions and 0 deletions

View File

@@ -33,6 +33,9 @@ if [[ -d /usr/local/sbin ]]; then
export PATH=/usr/local/sbin:$PATH
fi
# adding path directory for custom scripts
export PATH=$ZSH/bin:$PATH
# check for custom bin directory and add to path
if [[ -d ~/bin ]]; then
export PATH=~/bin:$PATH