oh-my-zsh.sh 448 B

12345678910111213141516
  1. # Initializes Oh My Zsh
  2. # Load all of the config files in ~/oh-my-zsh that end in .zsh
  3. # TIP: Add files you don't want in git to .gitignore
  4. for config_file ($ZSH/lib/*.zsh) source $config_file
  5. # Load all of your custom configurations from custom/
  6. for config_file ($ZSH/custom/*.zsh) source $config_file
  7. # Check for updates on initial load...
  8. if [ "$DISABLE_AUTO_UPDATE" = "true" ]
  9. then
  10. return
  11. else
  12. /bin/sh $ZSH/tools/check_for_upgrade.sh
  13. fi