zshrc 497 B

1234567891011121314151617181920212223
  1. export PAGER=less
  2. export ZSH=$HOME/oh-my-zsh
  3. export LC_CTYPE=en_US.UTF-8
  4. # Load all of the config files in ~/oh-my-zsh that end in .zsh
  5. # TIP: Add files you don't want in git to .gitignore
  6. for i in $ZSH/*zsh; do source $i; done;
  7. # Directory stuff.
  8. setopt AUTO_NAME_DIRS
  9. # Speed stuff.
  10. #setopt NO_BEEP
  11. setopt AUTO_CD
  12. setopt MULTIOS
  13. setopt CDABLEVARS
  14. # Customize to your needs...
  15. export PATH=~/bin:/opt/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/local/sbin:/opt/local/lib/postgresql83/bin