2009-09-01 22:41:18 +08:00
|
|
|
# Initializes Oh My Zsh
|
|
|
|
|
2009-10-26 12:47:23 +08:00
|
|
|
# add a function path
|
|
|
|
fpath=($ZSH/functions $fpath)
|
|
|
|
|
2009-09-01 22:41:18 +08:00
|
|
|
# Load all of the config files in ~/oh-my-zsh that end in .zsh
|
|
|
|
# TIP: Add files you don't want in git to .gitignore
|
2009-09-23 22:43:36 +08:00
|
|
|
for config_file ($ZSH/lib/*.zsh) source $config_file
|
2009-09-23 23:02:58 +08:00
|
|
|
|
|
|
|
# Load all of your custom configurations from custom/
|
|
|
|
for config_file ($ZSH/custom/*.zsh) source $config_file
|
2009-10-01 15:55:07 +08:00
|
|
|
|
2010-06-04 03:03:26 +08:00
|
|
|
# Load all of the plugins that were defined in ~/.zshrc
|
|
|
|
plugin=${plugin:=()}
|
2010-10-01 12:34:06 +08:00
|
|
|
for plugin ($plugins) source $ZSH/plugins/$plugin/$plugin.plugin.zsh
|
2010-06-04 03:03:26 +08:00
|
|
|
|
2009-10-01 15:55:07 +08:00
|
|
|
# Check for updates on initial load...
|
|
|
|
if [ "$DISABLE_AUTO_UPDATE" = "true" ]
|
|
|
|
then
|
|
|
|
return
|
|
|
|
else
|
2009-12-14 03:38:37 +08:00
|
|
|
/usr/bin/env zsh $ZSH/tools/check_for_upgrade.sh
|
2009-10-01 15:55:07 +08:00
|
|
|
fi
|