Skip to content

Instantly share code, notes, and snippets.

@katspaugh
Last active December 18, 2015 10:09
Show Gist options
  • Save katspaugh/5766301 to your computer and use it in GitHub Desktop.
Save katspaugh/5766301 to your computer and use it in GitHub Desktop.
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
if [ -f /usr/share/git-core/git-completion.bash ]; then
. /usr/share/git-core/git-completion.bash
fi
if [ -f /usr/share/git-core/git-prompt.sh ]; then
. /usr/share/git-core/git-prompt.sh
PS1='🍏 :\w$(__git_ps1 " (%s)")\$ '
fi
alias e="emacsclient -n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment