zshrc.zsh-template 964 B

12345678910111213141516171819202122232425262728293031
  1. # Path to your oh-my-zsh configuration.
  2. 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. ZSH_THEME="robbyrussell"
  8. # Set to this to use case-sensitive completion
  9. # CASE_SENSITIVE="true"
  10. # Comment this out to disable weekly auto-update checks
  11. # DISABLE_AUTO_UPDATE="true"
  12. # Uncomment following line if you want to disable colors in ls
  13. # DISABLE_LS_COLORS="true"
  14. # Uncomment following line if you want to disable autosetting terminal title.
  15. # DISABLE_AUTO_TITLE="true"
  16. # Uncomment following line if you want red dots to be displayed while waiting for completion
  17. # COMPLETION_WAITING_DOTS="true"
  18. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  19. # Example format: plugins=(rails git textmate ruby lighthouse)
  20. plugins=(git)
  21. source $ZSH/oh-my-zsh.sh
  22. # Customize to your needs...