Skip to content

Instantly share code, notes, and snippets.

@jkleckner
Created July 6, 2014 19:57
Show Gist options
  • Save jkleckner/30c8037caf8d913bb4b3 to your computer and use it in GitHub Desktop.
Save jkleckner/30c8037caf8d913bb4b3 to your computer and use it in GitHub Desktop.
Minimal initialization for brew and bash on a Mac
Modify or create ~/.profile to contain:
PATH=/usr/local/bin:$PATH
source ~/.bashrc
Modify or create ~/.bashrc to contain:
if [ -f `brew --prefix`/share/bash-completion/bash_completion ]; then
source `brew --prefix`/share/bash-completion/bash_completion
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment