Last active
August 29, 2015 13:55
-
-
Save jdutton/8733961 to your computer and use it in GitHub Desktop.
Jeff's Mac .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 EDITOR=emacs | |
export GOPATH=~/Workspace/go | |
export PATH=$PATH:$GOPATH/bin | |
eval "$(rbenv init -)" | |
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_55.jdk/Contents/Home | |
alias ll='ls -l' | |
# Set prompt to highlight the git branch | |
# curl -L https://raw.github.com/git/git/master/contrib/completion/git-prompt.sh -o ~/.git-prompt.sh | |
source ~/.git-prompt.sh | |
GIT_BRANCH_COLOR='\e[1;95m' | |
PS1="\h:\W \u\[$GIT_BRANCH_COLOR\]\$(__git_ps1)\[\e[m\]\$ " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment