Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. # MacPorts Installer addition on 2012-05-23_at_10:37:44: adding an appropriate PATH variable for use with MacPorts.
  2. export PATH=/opt/local/bin:/opt/local/sbin:$PATH
  3. # Finished adapting your PATH environment variable for use with MacPorts.
  4.  
  5. export PATH=/Applications/MAMP/bin/php/php5.4.10/bin:/usr/local/bin:/opt/local/bin:/opt/local/sbin:/usr/local/git/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/X11/bin:$PATH
  6.  
  7. # Added for MongoDB
  8. export MONGO_PATH=/usr/local/mongodb
  9. export PATH=$PATH:$MONGO_PATH/bin
  10.  
  11. # Tell ls to be colourful
  12. export CLICOLOR=1
  13. export LSCOLORS=GxFxCxDxBxegedabagaced
  14.  
  15. # Tell grep to highlight matches
  16. export GREP_OPTIONS='--color=auto'
  17.  
  18. # Added for Git bash completion after I moved from macports to homebrew
  19. if [ -f $(brew --prefix)/etc/bash_completion ]; then
  20. . $(brew --prefix)/etc/bash_completion
  21. fi
  22.  
  23. PS1="Desk /W# "
  24.  
  25. # Set colour bash prompt according to git/svn branch
  26. . ~/.git_svn_bash_prompt
  27.  
  28. # Added for Git autocomplete
  29. source ~/bin/git-completion.bash
  30. #PS1='[u@h w$(__git_ps1 " (%s)")]$ '
  31. PS1="W$(__git_ps1) $ "
  32.  
  33. # Homebrew
  34. export PATH="/usr/local/bin:$PATH"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement