Created
August 16, 2011 08:26
-
-
Save jlgeering/1148657 to your computer and use it in GitHub Desktop.
bash config for OS X
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
. ~/.profile | |
if [ -f `brew --prefix`/etc/bash_completion ]; then | |
. `brew --prefix`/etc/bash_completion | |
fi |
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
PS1="\w$ " | |
export JAVA_HOME=`/usr/libexec/java_home` | |
# homebrew: | |
export PATH=/usr/local/bin:/usr/local/sbin:$PATH | |
alias ls="ls -G" | |
alias l="ls -l" | |
alias lh="ls -lh" | |
alias la="ls -lA" | |
alias tnf="tail -n 100 -f" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment