Skip to content

Instantly share code, notes, and snippets.

@jlgeering
Created August 16, 2011 08:26
Show Gist options
  • Save jlgeering/1148657 to your computer and use it in GitHub Desktop.
Save jlgeering/1148657 to your computer and use it in GitHub Desktop.
bash config for OS X
. ~/.profile
if [ -f `brew --prefix`/etc/bash_completion ]; then
. `brew --prefix`/etc/bash_completion
fi
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