oh-my-zshrc 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # If you come from bash you might have to change your $PATH.
  2. # export PATH=$HOME/bin:/usr/local/bin:$PATH
  3. # Path to your oh-my-zsh installation.
  4. ZSH=/usr/share/oh-my-zsh/
  5. # Set name of the theme to load. Optionally, if you set this to "random"
  6. # it'll load a random theme each time that oh-my-zsh is loaded.
  7. # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
  8. ZSH_THEME=""
  9. # Uncomment the following line to use case-sensitive completion.
  10. # CASE_SENSITIVE="true"
  11. # Uncomment the following line to use hyphen-insensitive completion. Case
  12. # sensitive completion must be off. _ and - will be interchangeable.
  13. # HYPHEN_INSENSITIVE="true"
  14. # Uncomment the following line to disable bi-weekly auto-update checks.
  15. DISABLE_AUTO_UPDATE="true"
  16. # Uncomment the following line to change how often to auto-update (in days).
  17. # export UPDATE_ZSH_DAYS=13
  18. # DISABLE_LS_COLORS="true" Uncomment the following line to disable colors in ls.
  19. # Uncomment the following line to disable auto-setting terminal title.
  20. # DISABLE_AUTO_TITLE="true"
  21. # Uncomment the following line to enable command auto-correction.
  22. # ENABLE_CORRECTION="true"
  23. # Uncomment the following line to display red dots whilst waiting for completion.
  24. # COMPLETION_WAITING_DOTS="true"
  25. # Uncomment the following line if you want to disable marking untracked files
  26. # under VCS as dirty. This makes repository status check for large repositories
  27. # much, much faster.
  28. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  29. # Uncomment the following line if you want to change the command execution time
  30. # stamp shown in the history command output.
  31. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  32. # HIST_STAMPS="mm/dd/yyyy"
  33. # Would you like to use another custom folder than $ZSH/custom?
  34. # ZSH_CUSTOM=/path/to/new-custom-folder
  35. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  36. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  37. # Example format: plugins=(rails git textmate ruby lighthouse)
  38. # Add wisely, as too many plugins slow down shell startup.
  39. #plugins=(git)
  40. #plugins=(tmux) # might be interesting
  41. ZSH_CACHE_DIR=$HOME/.cache/oh-my-zsh
  42. if [[ ! -d $ZSH_CACHE_DIR ]]; then
  43. mkdir $ZSH_CACHE_DIR
  44. fi
  45. source $ZSH/oh-my-zsh.sh