Last active
December 19, 2015 14:48
-
-
Save revans/5971506 to your computer and use it in GitHub Desktop.
This should be your $HOME/.bash_profile file
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
# Make sure packages know OSX is 64bit | |
export ARCHFLAGS='-arch x86_64' | |
# Homebrew Path Setup | |
export PATH=/usr/local/bin:/usr/local/sbin/:$HOME/bin:$PATH | |
# NPM Path Setup | |
export PATH=$PATH:/usr/local/share/npm/lib/node_modules | |
# Rbenv Path Setup | |
export PATH=$HOME/.rbenv/bin:$PATH | |
eval "$(rbenv init -)" | |
# Project specific, executable dependencies | |
export PATH=./bin:$PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment