Guest User

Untitled

a guest
May 24th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. # Setting PATH for Python 2.7
  2. # The original version is saved in .bash_profile.pysave
  3. PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
  4. export PATH
  5. export PATH=$PATH:~/bin
  6.  
  7. # Custom Aliases
  8. alias unity-editor='open /Applications/Unity/Unity.app'
  9. alias google-code-format='clang-format -i -style=google'
  10. alias youtube='mpsyt'
  11.  
  12. export SCALA_HOME="/usr/local/share/scala"
  13. export PATH=$PATH:$SCALA_HOME/bin
  14.  
  15. export PATH=$PATH:/Users/AntonioMolner/.local/bin
  16.  
  17. # MacPorts Installer addition on 2016-12-21_at_19:02:06: adding an appropriate PATH variable for use with MacPorts.
  18. export PATH="/opt/local/bin:/opt/local/sbin:$PATH"
  19. # Finished adapting your PATH environment variable for use with MacPorts.
  20.  
  21. # Setting PATH for Python 3.6
  22. # The original version is saved in .bash_profile.pysave
  23. PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}"
  24. export PATH
  25.  
  26. # added by Anaconda3 installer
  27. export PATH="/Users/AntonioMolner/anaconda3/bin:$PATH"
  28.  
  29. # Setting PATH for Python 3.7
  30. # The original version is saved in .bash_profile.pysave
  31. PATH="/Library/Frameworks/Python.framework/Versions/3.7/bin:${PATH}"
  32. export PATH
  33.  
  34. # Setting PATH for Python 3.5
  35. # The original version is saved in .bash_profile.pysave
  36. PATH="/Library/Frameworks/Python.framework/Versions/3.5/bin:${PATH}"
  37. export PATH
  38.  
  39. # Setting PATH for Python 3.4
  40. # The orginal version is saved in .bash_profile.pysave
  41. PATH="/Library/Frameworks/Python.framework/Versions/3.4/bin:${PATH}"
  42. export PATH
  43.  
  44. # Set CLICOLOR if you want Ansi Colors in iTerm2
  45. export CLICOLOR=1
  46.  
  47. # Set colors to match iTerm2 Terminal Colors
  48. export TERM=xterm-256color
  49.  
  50. # Diplay system info. Run neofetch on start.
  51. # neofetch
  52.  
  53. export OCTAVE_EXECUTABLE=/usr/local/bin/octave-cli
  54. eval "$(rbenv init -)"
  55.  
  56. export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
  57. export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/local/lib
Add Comment
Please, Sign In to add comment