Guest User

Untitled

a guest
May 24th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. # Environment Variables
  2. export PS1="\u@\h:\w$ "
  3. export PATH=$HOME/bin:/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:/usr/local/git/bin:$PATH
  4. export MANPATH=$MANPATH:/opt/local/share/man:/usr/local/git/man
  5. export INFOPATH=$INFOPATH:/opt/local/share/info
  6. export EDITOR=vi
  7. export CVS_RSH=ssh
  8. export DEPLOY_TO=staging
  9.  
  10. # Auto completion for Gemedit. Awesomeness.
  11. complete -C "/usr/bin/gemedit --complete -e mate" gemedit
  12.  
  13. # View man documentation in Preview
  14. pman ()
  15. {
  16. man -t "${1}" | open -f -a /Applications/Preview.app/
  17. }
  18.  
  19. # disk usage per directory
  20. usage ()
  21. {
  22. if [ $1 ]
  23. then
  24. du -hd $1
  25. else
  26. du -hd 1
  27. fi
  28. }
  29.  
  30. # External
  31. source ~/.aliases
  32. source ~/.projects
  33. source ~/.git-completion
Add Comment
Please, Sign In to add comment