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