oh-my-zsh.sh 305 B

12345678
  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