Guest User

Untitled

a guest
Jan 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. [[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile
  2.  
  3. export PATH=/usr/local/bin:$PATH
  4. . ~/.git_svn_bash_prompt
  5.  
  6. if [ -f $(brew --prefix)/etc/bash_completion ]; then
  7. . $(brew --prefix)/etc/bash_completion
  8. fi
  9.  
  10. if [ -f ~/.config/exercism/exercism_completion.bash ]; then
  11. . ~/.config/exercism/exercism_completion.bash
  12. fi
  13.  
  14. source ~/.git-prompt.sh
  15. source ~/.git-completion.bash
  16. source ~/.git-flow-completion.sh
  17.  
  18. [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
  19. export PATH="/usr/local/opt/sqlite/bin:$PATH"
  20.  
  21. export NVM_DIR="$HOME/.nvm"
  22. [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
  23. [[ -r $NVM_DIR/bash_completion ]] && . $NVM_DIR/bash_completion
Add Comment
Please, Sign In to add comment