This file contains hidden or 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
| source ~/.git-completion.sh | |
| # Show branch dirty state in git autocompletion script | |
| export GIT_PS1_SHOWDIRTYSTATE="true"; | |
| # Show upstream state | |
| export GIT_PS1_SHOWUPSTREAM="verbose" | |
| export PS1='\[\033[00;35m\]\@ \[\033[01;36m\]\u \[$(tput sgr0)\]\[\033[31m\]\h : $(__git_ps1 " (%s)") \[\033[01;36m\] \w\n\[\033[36m\]\$\[\033[00m\] ' | |
| export TERM="xterm-color" |