Created
September 7, 2015 22:24
-
-
Save prokizzle/370f3d6df7b76649ddd4 to your computer and use it in GitHub Desktop.
Oh-My-Zsh custom paths
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
paths=( | |
"/Applications/Postgres93.app/Contents/MacOS/bin" | |
"$PATH:$GOPATH/bin" | |
"/usr/local/bin" | |
"/usr/local/opt" | |
"/usr/local" | |
"/opt/chefdk/bin" | |
"$HOME/.node/bin" | |
"$NPM_PACKAGES/bin" | |
"/usr/local/sbin" | |
) | |
export GOPATH=$HOME/.gocode | |
export NPM_PACKAGES="$HOME/.npm-packages" | |
export NODE_PATH="$NPM_PACKAGES/lib/node_modules:$NODE_PATH" | |
export EDITOR='vim' | |
for ipath in ${paths[@]} | |
do | |
export PATH="$ipath:$PATH" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment