Guest User

Untitled

a guest
Jun 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. export CLICOLOR=1
  2. export LSCOLORS=GxFxCxDxBxegedabagaced
  3.  
  4. alias ls='ls -GFh'
  5. alias ll='ls -alh'
  6.  
  7. # Color Code me Bro
  8. RED='\[\033[31m\]'
  9. GREEN='\[\033[32m\]'
  10. YELLOW='\[\033[33m\]'
  11. BLUE='\[\033[34m\]'
  12. PURPLE='\[\033[35m\]'
  13. CYAN='\[\033[36m\]'
  14. WHITE='\[\033[37m\]'
  15. NIL='\[\033[00m\]'
  16.  
  17. test -f ~/.git-completion.bash && . $_
  18.  
  19. function parse_git_branch {
  20. git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
  21. }
  22. export PS1="🍔 ${YELLOW}\u@\h:${CYAN}\$(parse_git_branch) ${GREEN}\w ${CYAN}$ \[\e[0m\]"
  23.  
  24. # Setting PATH for Python 3.6
  25. # The original version is saved in .bash_profile.pysave
  26. export PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}"
  27. export PATH="/usr/local/opt/openssl/bin:$PATH"
  28.  
  29. source /Library/Frameworks/Python.framework/Versions/2.7/bin/virtualenvwrapper.sh
  30.  
  31. # Setting PATH for Python 2.7
  32. # The original version is saved in .bash_profile.pysave
  33. export PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
  34.  
  35. # added by Anaconda2 installer
  36. # export PATH="/Users/csosa/anaconda2/bin:$PATH"
  37.  
  38. # add Grow
  39. alias grow="/Users/csosa/bin/grow"
Add Comment
Please, Sign In to add comment