Guest User

Untitled

a guest
Dec 14th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. # Enable tab completion
  2. source ~/.git-completion.bash
  3.  
  4. # colors!
  5. green="\[\033[0;32m\]"
  6. cyan="\[\033[0;36m\]"
  7. purple="\[\033[0;35m\]"
  8. reset="\[\033[0m\]"
  9.  
  10. # Change command prompt
  11. source ~/.git-prompt.sh
  12. export GIT_PS1_SHOWDIRTYSTATE=1
  13. # '\u' adds the name of the current user to the prompt
  14. # '\$(__git_ps1)' adds git-related stuff
  15. # '\W' adds the name of the current directory
  16. export PS1="$purple\u$green\$(__git_ps1)$cyan \W $ $reset"
  17. # echo export NODE_ENV=production >> ~/.bash_profile
  18. # export NODE_ENV=production
Add Comment
Please, Sign In to add comment