Created
March 28, 2014 08:46
-
-
Save vdaubry/9828181 to your computer and use it in GitHub Desktop.
.bash_profile
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
export PATH=$PATH:~/bin | |
[[ -s "/Users/vincentdaubry/.rvm/scripts/rvm" ]] && source "/Users/vincentdaubry/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* | |
# MacPorts Installer addition on 2012-02-03_at_16:06:34: adding an appropriate PATH variable for use with MacPorts. | |
export PATH=/opt/local/bin:/opt/local/sbin:$PATH | |
# Finished adapting your PATH environment variable for use with MacPorts. | |
# MacPorts Installer addition on 2012-02-18_at_08:57:12: adding an appropriate PATH variable for use with MacPorts. | |
export PATH=/opt/local/bin:/opt/local/sbin:$PATH | |
# Finished adapting your PATH environment variable for use with MacPorts. | |
export EDITOR="subl -w" | |
#SSL fix | |
export SSL_CERT_FILE=/opt/local/share/curl/curl-ca-bundle.crt | |
export CURL_CA_BUNDLE=$SSL_CERT_FILE | |
#export PS1='\[\e[0:35m⌘\e[m \e[0:36m\w/\e[m \e[0:33m`git branch 2> /dev/null | grep -e ^* | sed -E s/^\\\\\*\ \(.+\)$/\(\\\\\1\)\ /`\e[m\]' | |
#Node | |
export PATH=/usr/local/bin:$PATH | |
#JAVA | |
export JAVA_HOME=$(/usr/libexec/java_home) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment