zshrc.zsh-template 1.1 KB

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