Guest User

Untitled

a guest
Jul 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. #######################################################
  2.  
  3. ### # ### ### ### ## # # ### ###
  4. # # # # # # # # # ## ## # # #
  5. # ## # # #### ### ### # # # # # ### #
  6. # # # # # # # # # # # # #
  7. ### # # # # # ## # # # #
  8.  
  9. #######################################################
  10.  
  11. source $HOME/git-prompt.sh
  12. source $HOME/git-completion.sh
  13.  
  14. export GIT_PS1_SHOWDIRTYSTATE=1 GIT_PS1_SHOWSTASHSTATE=1 GIT_PS1_SHOWUNTRACKEDFILES=1
  15. export GIT_PS1_SHOWUPSTREAM=verbose GIT_PS1_DESCRIBE_STYLE=branch GIT_PS1_SHOWCOLORHINTS=1
  16. export GIT_PS1_HIDE_IF_PWD_IGNORED=1
  17.  
  18. txtylw='\e[1;33m' # Yellow
  19. txtwht='\e[0;37m' # White
  20. txtgre='\e[0;32m' # Green
  21. txtcyn='\e[0;36m' # Cyan
  22. fgcolor="\033[0m" # Unsets color to term's fg color
  23.  
  24. gitprompt='$(__git_ps1 "(%s)")'
  25.  
  26. # @see `man bash`#prompting for more options
  27. export PS1="\[$txtcyn\][\A] \u@\h:\[$txtgre\]\W\[$txtylw\]$gitprompt\[$txtwht\] \$ \[$fgcolor\]"
Add Comment
Please, Sign In to add comment