oh-my-zsh.sh 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. # If ZSH is not defined, use the current script's directory.
  2. [[ -z "$ZSH" ]] && export ZSH="${${(%):-%x}:a:h}"
  3. # Set ZSH_CACHE_DIR to the path where cache files should be created
  4. # or else we will use the default cache/
  5. if [[ -z "$ZSH_CACHE_DIR" ]]; then
  6. ZSH_CACHE_DIR="$ZSH/cache"
  7. fi
  8. # Check for updates on initial load...
  9. if [ "$DISABLE_AUTO_UPDATE" != "true" ]; then
  10. source $ZSH/tools/check_for_upgrade.sh
  11. fi
  12. # Initializes Oh My Zsh
  13. # add a function path
  14. fpath=($ZSH/functions $ZSH/completions $fpath)
  15. # Load all stock functions (from $fpath files) called below.
  16. autoload -U compaudit compinit
  17. # Set ZSH_CUSTOM to the path where your custom config files
  18. # and plugins exists, or else we will use the default custom/
  19. if [[ -z "$ZSH_CUSTOM" ]]; then
  20. ZSH_CUSTOM="$ZSH/custom"
  21. fi
  22. is_plugin() {
  23. local base_dir=$1
  24. local name=$2
  25. builtin test -f $base_dir/plugins/$name/$name.plugin.zsh \
  26. || builtin test -f $base_dir/plugins/$name/_$name
  27. }
  28. # Add all defined plugins to fpath. This must be done
  29. # before running compinit.
  30. for plugin ($plugins); do
  31. if is_plugin $ZSH_CUSTOM $plugin; then
  32. fpath=($ZSH_CUSTOM/plugins/$plugin $fpath)
  33. elif is_plugin $ZSH $plugin; then
  34. fpath=($ZSH/plugins/$plugin $fpath)
  35. else
  36. echo "[oh-my-zsh] plugin '$plugin' not found"
  37. fi
  38. done
  39. # Figure out the SHORT hostname
  40. if [[ "$OSTYPE" = darwin* ]]; then
  41. # macOS's $HOST changes with dhcp, etc. Use ComputerName if possible.
  42. SHORT_HOST=$(scutil --get ComputerName 2>/dev/null) || SHORT_HOST=${HOST/.*/}
  43. else
  44. SHORT_HOST=${HOST/.*/}
  45. fi
  46. # Save the location of the current completion dump file.
  47. if [ -z "$ZSH_COMPDUMP" ]; then
  48. ZSH_COMPDUMP="${ZDOTDIR:-${HOME}}/.zcompdump-${SHORT_HOST}-${ZSH_VERSION}"
  49. fi
  50. # Construct zcompdump OMZ metadata
  51. zcompdump_revision="#omz revision: $(builtin cd -q "$ZSH"; git rev-parse HEAD 2>/dev/null)"
  52. zcompdump_fpath="#omz fpath: $fpath"
  53. # Delete the zcompdump file if OMZ zcompdump metadata changed
  54. if ! command grep -q -Fx "$zcompdump_revision" "$ZSH_COMPDUMP" 2>/dev/null \
  55. || ! command grep -q -Fx "$zcompdump_fpath" "$ZSH_COMPDUMP" 2>/dev/null; then
  56. command rm -f "$ZSH_COMPDUMP"
  57. zcompdump_refresh=1
  58. fi
  59. if [[ $ZSH_DISABLE_COMPFIX != true ]]; then
  60. source $ZSH/lib/compfix.zsh
  61. # If completion insecurities exist, warn the user
  62. handle_completion_insecurities
  63. # Load only from secure directories
  64. compinit -i -C -d "${ZSH_COMPDUMP}"
  65. else
  66. # If the user wants it, load from all found directories
  67. compinit -u -C -d "${ZSH_COMPDUMP}"
  68. fi
  69. # Append zcompdump metadata if missing
  70. if (( $zcompdump_refresh )); then
  71. # Use `tee` in case the $ZSH_COMPDUMP filename is invalid, to silence the error
  72. # See https://github.com/ohmyzsh/ohmyzsh/commit/dd1a7269#commitcomment-39003489
  73. tee -a "$ZSH_COMPDUMP" &>/dev/null <<EOF
  74. $zcompdump_revision
  75. $zcompdump_fpath
  76. EOF
  77. fi
  78. unset zcompdump_revision zcompdump_fpath zcompdump_refresh
  79. # Load all of the config files in ~/oh-my-zsh that end in .zsh
  80. # TIP: Add files you don't want in git to .gitignore
  81. for config_file ($ZSH/lib/*.zsh); do
  82. custom_config_file="${ZSH_CUSTOM}/lib/${config_file:t}"
  83. [ -f "${custom_config_file}" ] && config_file=${custom_config_file}
  84. source $config_file
  85. done
  86. # Load all of the plugins that were defined in ~/.zshrc
  87. for plugin ($plugins); do
  88. if [ -f $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh ]; then
  89. source $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh
  90. elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then
  91. source $ZSH/plugins/$plugin/$plugin.plugin.zsh
  92. fi
  93. done
  94. # Load all of your custom configurations from custom/
  95. for config_file ($ZSH_CUSTOM/*.zsh(N)); do
  96. source $config_file
  97. done
  98. unset config_file
  99. # Load the theme
  100. if [ ! "$ZSH_THEME" = "" ]; then
  101. if [ -f "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" ]; then
  102. source "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme"
  103. elif [ -f "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme" ]; then
  104. source "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme"
  105. else
  106. source "$ZSH/themes/$ZSH_THEME.zsh-theme"
  107. fi
  108. fi