Last active
February 7, 2017 11:46
-
-
Save omoshetech-t/a1df6b4837a6d378a07c0a6e2b6f0796 to your computer and use it in GitHub Desktop.
.bash_profile 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
export CLICOLOR= | |
export GREP_OPTIONS="--color=auto" | |
export HISTSIZE= | |
export HISTTIMEFORMAT="%F %T " | |
[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion | |
if type __git_ps1 > /dev/null 2>&1; then | |
PROMPT_COMMAND="__git_ps1 '\h:\W \u' '\\\$ '; $PROMPT_COMMAND" | |
GIT_PS1_SHOWDIRTYSTATE=true | |
GIT_PS1_SHOWSTASHSTATE=true | |
GIT_PS1_SHOWUNTRACKEDFILES=true | |
GIT_PS1_SHOWUPSTREAM="auto" | |
GIT_PS1_SHOWCOLORHINTS=true | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment