.zshrc 879 B

12345678910111213141516171819202122232425262728
  1. # Path to your oh-my-zsh configuration.
  2. export ZSH=$HOME/.oh-my-zsh
  3. # Set name of the theme to load.
  4. # Look in ~/.oh-my-zsh/themes/
  5. # Optionally, if you set this to "random", it'll load a random theme each
  6. # time that oh-my-zsh is loaded.
  7. export ZSH_THEME="robbyrussell"
  8. # Set to this to use case-sensitive completion
  9. # export CASE_SENSITIVE="true"
  10. # Comment this out to disable weekly auto-update checks
  11. # export DISABLE_AUTO_UPDATE="true"
  12. # Uncomment following line if you want to disable colors in ls
  13. # export DISABLE_LS_COLORS="true"
  14. # Uncomment following line if you want to disable autosetting terminal title.
  15. # export DISABLE_AUTO_TITLE="true"
  16. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  17. # Example format: plugins=(rails git textmate ruby lighthouse)
  18. plugins=(git)
  19. source $ZSH/oh-my-zsh.sh
  20. # Customize to your needs...