Last active
November 19, 2015 23:43
-
-
Save Capotasto/10bcee2f700a5c07ff54 to your computer and use it in GitHub Desktop.
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
#PATH | |
export PATH=/sbin | |
export PATH=/usr/sbin:$PATH | |
export PATH=/bin:$PATH | |
export PATH=/usr/bin:$PATH | |
export PATH=/usr/local/bin:$PATH | |
eval "$(rbenv init -)" | |
#JAVA | |
export JAVA_HOME=`/usr/libexec/java_home -v 1.7` | |
#export JAVA_HOME=`/usr/libexec/java_home -v 1.8` | |
#TOMCAT | |
export TOMCAT_HOME=/usr/local/Cellar/tomcat/8.0.24/libexec | |
##git-completion.bash | |
source /usr/local/etc/bash_completion.d/git-prompt.sh | |
source /usr/local/etc/bash_completion.d/git-completion.bash | |
GIT_PS1_SHOWDIRTYSTATE=true | |
export PS1='\[\033[32m\]\u@\h\[\033[00m\]:\[\033[34m\]\w\[\033[31m\]$(__git_ps1)\[\033[00m\]\n\$ ' | |
##alias | |
alias ls='ls -F' | |
alias ll='ls -ltrF' | |
alias la='ls -aF' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment