Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zhpengg/57f38cc44ae520e6a9586d319b3b3f22 to your computer and use it in GitHub Desktop.
Save zhpengg/57f38cc44ae520e6a9586d319b3b3f22 to your computer and use it in GitHub Desktop.
#!/bin/bash
export PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH"
alias ls='ls --color'
alias ll='ls -l'
export SCALA_HOME='/Users/zhen/Downloads/scala-2.10.4'
export PATH=$SCALA_HOME/bin:$PATH
export MAVEN_HOME=/Users/zhen/Downloads/apache-maven-3.3.3
export PATH=$MAVEN_HOME/bin:$PATH
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
export PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w\[\033[01;33m\]$(__git_ps1)\[\033[01;34m\] \$\[\033[00m\] '
export GOPATH=/Users/zhen/Projects/golang
## vim 7.4 with lua
#export PATH="/usr/local/Cellar/vim/7.4.1755/bin/":$PATH
#alias vi='vim'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment