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
|
|
|
|
DISABLE_COLOR='true'
|
2011-02-27 23:13:57 +08:00
|
|
|
fi
|
|
|
|
|
2011-06-01 14:48:26 +08:00
|
|
|
# Load all files in $ZSH/oh-my-zsh/lib/ that end in .zsh.
|
2011-07-15 04:12:15 +08:00
|
|
|
for function_file in $ZSH/functions/*.zsh; do
|
|
|
|
source "$function_file"
|
2011-06-01 14:48:26 +08:00
|
|
|
done
|
2009-09-23 23:02:58 +08:00
|
|
|
|
2011-06-01 14:48:26 +08:00
|
|
|
# Add all defined plugins to fpath.
|
2010-06-04 03:03:26 +08:00
|
|
|
plugin=${plugin:=()}
|
2011-06-01 14:48:26 +08:00
|
|
|
for plugin in $plugins; do
|
|
|
|
fpath=($ZSH/plugins/$plugin $fpath)
|
|
|
|
done
|
2010-06-04 03:03:26 +08:00
|
|
|
|
2011-06-01 14:48:26 +08:00
|
|
|
# Load and run compinit.
|
2011-04-12 21:28:15 +08:00
|
|
|
autoload -U compinit
|
|
|
|
compinit -i
|
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
|
|
|
|
if [[ -f "$ZSH/plugins/$plugin/$plugin.plugin.zsh" ]]; then
|
|
|
|
source "$ZSH/plugins/$plugin/$plugin.plugin.zsh"
|
2011-04-13 05:41:09 +08:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2011-06-01 14:48:26 +08:00
|
|
|
# Load the theme.
|
|
|
|
if [[ "$ZSH_THEME" == "random" ]]; then
|
2011-07-14 01:03:11 +08:00
|
|
|
themes=($ZSH/themes/**/*.theme.zsh)
|
2011-06-01 14:48:26 +08:00
|
|
|
theme_index=${#themes[@]}
|
|
|
|
(( theme_index=((RANDOM % theme_index) + 1) ))
|
|
|
|
random_theme="${themes[$theme_index]}"
|
|
|
|
source "$random_theme"
|
2011-04-29 17:24:29 +08:00
|
|
|
else
|
2011-07-14 01:03:11 +08:00
|
|
|
if [[ -f "$ZSH/themes/$ZSH_THEME/$ZSH_THEME.theme.zsh" ]]; then
|
|
|
|
source "$ZSH/themes/$ZSH_THEME/$ZSH_THEME.theme.zsh"
|
2011-06-15 06:17:22 +08:00
|
|
|
fi
|
2011-04-29 17:24:29 +08:00
|
|
|
fi
|
|
|
|
|
2011-05-02 00:33:28 +08:00
|
|
|
# Compile zcompdump, if modified, to increase startup speed.
|
2011-06-01 14:48:26 +08:00
|
|
|
if [[ "$HOME/.zcompdump" -nt "$HOME/.zcompdump.zwc" ]] || [[ ! -e "$HOME/.zcompdump.zwc" ]]; then
|
2011-05-02 00:33:28 +08:00
|
|
|
zcompile "$HOME/.zcompdump"
|
|
|
|
fi
|
2011-05-31 07:46:27 +08:00
|
|
|
|