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
|
|
|
|
DISABLE_COLOR='true'
|
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-15 04:57:11 +00:00
|
|
|
# Load all files in $OMZ/oh-my-zsh/lib/ that end in .zsh.
|
|
|
|
for function_file in $OMZ/functions/*.zsh; do
|
2011-07-15 02:50:40 +00:00
|
|
|
source "$function_file"
|
|
|
|
done
|
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-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-05-01 16:33:28 +00:00
|
|
|
# Compile zcompdump, if modified, to increase startup speed.
|
2011-06-01 06:48:26 +00:00
|
|
|
if [[ "$HOME/.zcompdump" -nt "$HOME/.zcompdump.zwc" ]] || [[ ! -e "$HOME/.zcompdump.zwc" ]]; then
|
2011-05-01 16:33:28 +00:00
|
|
|
zcompile "$HOME/.zcompdump"
|
|
|
|
fi
|
2011-05-30 23:46:27 +00:00
|
|
|
|