zshrc 700 B

12345678910111213141516171819202122232425262728293031323334
  1. export EDITOR=/opt/local/bin/joe
  2. export PAGER=less
  3. export ZSH=$HOME/zsh
  4. export LC_CTYPE=en_US.UTF-8
  5. # TODO: Refactor this sometimes soon...
  6. source $ZSH/colors.zsh
  7. source $ZSH/aliases.zsh
  8. source $ZSH/completion.zsh
  9. source $ZSH/rake_completion.zsh
  10. source $ZSH/functions.zsh
  11. source $ZSH/git.zsh
  12. source $ZSH/history.zsh
  13. source $ZSH/grep.zsh
  14. source $ZSH/prompt.zsh
  15. # Uncomment if you have a projects.zsh file
  16. # source $ZSH/projects.zsh
  17. # Directory stuff.
  18. setopt AUTO_NAME_DIRS
  19. # Speed stuff.
  20. #setopt NO_BEEP
  21. setopt AUTO_CD
  22. setopt MULTIOS
  23. setopt CDABLEVARS
  24. # Customize to your needs...
  25. export PATH=~/bin:/opt/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/local/sbin:/opt/local/lib/postgresql83/bin