2011-06-01 14:48:26 +08:00
|
|
|
# Initializes OH MY ZSH.
|
2009-09-01 22:41:18 +08:00
|
|
|
|
2011-06-01 14:48:26 +08:00
|
|
|
# Disable color in dumb terminals.
|
|
|
|
if [[ "$TERM" == 'dumb' ]]; then
|
2011-09-06 03:39:37 +08:00
|
|
|
COLOR='false'
|
2011-02-27 23:13:57 +08:00
|
|
|
fi
|
|
|
|
|
2011-07-18 08:15:51 +08:00
|
|
|
# Add functions to fpath.
|
2011-07-29 04:59:15 +08:00
|
|
|
fpath=($OMZ/themes/*(/) $OMZ/plugins/${^plugins} $OMZ/functions $fpath)
|
2010-06-04 03:03:26 +08:00
|
|
|
|
2011-07-29 04:59:15 +08:00
|
|
|
# Load and initialize the completion system.
|
2011-07-15 10:50:40 +08:00
|
|
|
autoload -Uz compinit && compinit -i
|
|
|
|
|
2011-07-29 05:06:45 +08:00
|
|
|
# Source function files.
|
|
|
|
source "$OMZ/functions/init.zsh"
|
2009-10-01 15:55:07 +08:00
|
|
|
|
2011-06-01 14:48:26 +08:00
|
|
|
# Load all plugins defined in ~/.zshrc.
|
|
|
|
for plugin in $plugins; do
|
2011-07-15 12:57:11 +08:00
|
|
|
if [[ -f "$OMZ/plugins/$plugin/$plugin.plugin.zsh" ]]; then
|
|
|
|
source "$OMZ/plugins/$plugin/$plugin.plugin.zsh"
|
2011-04-13 05:41:09 +08:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2011-09-05 12:32:39 +08:00
|
|
|
# Set PATH for Mac OS X GUI applications (requires re-login).
|
|
|
|
if [[ "$OSTYPE" == darwin* ]]; then
|
|
|
|
launchctl setenv PATH "$PATH" &!
|
|
|
|
fi
|
|
|
|
|
2011-07-18 08:15:51 +08:00
|
|
|
# Load and run the prompt theming system.
|
|
|
|
autoload -Uz promptinit && promptinit -i
|
2011-04-29 17:24:29 +08:00
|
|
|
|
2011-09-05 12:22:23 +08:00
|
|
|
# Compile zcompdump, if modified, to increase startup speed.
|
|
|
|
if [[ "$HOME/.zcompdump" -nt "$HOME/.zcompdump.zwc" ]] || [[ ! -f "$HOME/.zcompdump.zwc" ]]; then
|
|
|
|
zcompile "$HOME/.zcompdump"
|
|
|
|
fi
|
2011-05-31 07:46:27 +08:00
|
|
|
|