Created
December 11, 2013 01:32
-
-
Save braitom/7903658 to your computer and use it in GitHub Desktop.
my mac's .bashrc
This file contains 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
#nodebrew | |
if [[ -f ~/.nodebrew/nodebrew ]]; then | |
export PATH=$HOME/.nodebrew/current/bin:$PATH | |
nodebrew use v0.10 | |
fi | |
#pyenv | |
export PATH="$HOME/.pyenv/bin:$PATH" | |
eval "$(pyenv init -)" | |
#rbenv | |
export PATH="$HOME/.rbenv/bin:$PATH" | |
eval "$(rbenv init -)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment