Guest User

Untitled

a guest
Jan 19th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. export PATH=$PATH:/usr/local/bin
  2.  
  3. # Setting PATH for Python 3.6
  4. # The original version is saved in .bash_profile.pysave
  5. PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}"
  6. export PATH
  7.  
  8.  
  9. # Added by Canopy installer on 2016-10-01
  10. # VIRTUAL_ENV_DISABLE_PROMPT can be set to '' to make the bash prompt show that Canopy is active, otherwise 1
  11. alias activate_canopy="source '/Users/AnirudhKaushik/Documents/User/bin/activate'"
  12. export PYTHONPATH=/usr/local/lib/python2.7/site-packag
  13. # VIRTUAL_ENV_DISABLE_PROMPT=1 source '/Users/AnirudhKaushik/Documents/User/bin/activate'
  14.  
  15. # Setting PATH for SublimeText 3
  16. export PATH=$PATH:/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/
  17.  
  18. # Enable tab completion
  19. source ~/git-completion.bash
  20.  
  21. # colors!
  22. green="\[\033[0;32m\]"
  23. blue="\[\033[0;34m\]"
  24. purple="\[\033[0;35m\]"
  25. reset="\[\033[0m\]"
  26.  
  27. # Change command prompt
  28. source ~/git-prompt.sh
  29. export GIT_PS1_SHOWDIRTYSTATE=1
  30. # '\u' adds the name of the current user to the prompt
  31. # '\$(__git_ps1)' adds git-related stuff
  32. # '\W' adds the name of the current directory
  33. export PS1="$purple\u$green\$(__git_ps1)$blue \W $ $reset"
  34.  
  35. # MongoDB
  36. export MONGO_PATH=/usr/local/mongodb
  37. export PATH=$MONGO_PATH/bin:$PATH
  38.  
  39. #########
  40. # Aliases
  41. #########
  42. alias tf=tensorflow
  43. alias tensorflow='source ~/tensorflow/bin/activate'
  44. alias python=python3
  45. alias linesofcode='git ls-files | xargs wc -l'
Add Comment
Please, Sign In to add comment