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-06-01 06:48:26 +00:00
|
|
|
# Add all defined plugins to fpath.
|
2010-06-03 19:03:26 +00:00
|
|
|
plugin=${plugin:=()}
|
2011-06-01 06:48:26 +00:00
|
|
|
for plugin in $plugins; do
|
2011-07-15 04:57:11 +00:00
|
|
|
fpath=("$OMZ/plugins/$plugin" $fpath)
|
2011-06-01 06:48:26 +00:00
|
|
|
done
|
2010-06-03 19:03:26 +00:00
|
|
|
|
2011-06-01 06:48:26 +00:00
|
|
|
# Load and run compinit.
|
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-06-01 06:48:26 +00:00
|
|
|
# Load the theme.
|
|
|
|
if [[ "$ZSH_THEME" == "random" ]]; then
|
2011-07-15 04:57:11 +00:00
|
|
|
themes=($OMZ/themes/**/*.theme.zsh)
|
2011-06-01 06:48:26 +00:00
|
|
|
theme_index=${#themes[@]}
|
|
|
|
(( theme_index=((RANDOM % theme_index) + 1) ))
|
|
|
|
random_theme="${themes[$theme_index]}"
|
|
|
|
source "$random_theme"
|
2011-04-29 09:24:29 +00:00
|
|
|
else
|
2011-07-15 04:57:11 +00:00
|
|
|
if [[ -f "$OMZ/themes/$ZSH_THEME/$ZSH_THEME.theme.zsh" ]]; then
|
|
|
|
source "$OMZ/themes/$ZSH_THEME/$ZSH_THEME.theme.zsh"
|
2011-06-14 22:17:22 +00:00
|
|
|
fi
|
2011-04-29 09:24:29 +00:00
|
|
|
fi
|
|
|
|
|
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
|
|
|
|