2011-06-01 08:48:26 +02:00
|
|
|
# Initializes OH MY ZSH.
|
2009-09-01 16:41:18 +02:00
|
|
|
|
2011-06-01 08:48:26 +02:00
|
|
|
# Disable color in dumb terminals.
|
|
|
|
if [[ "$TERM" == 'dumb' ]]; then
|
|
|
|
DISABLE_COLOR='true'
|
2011-02-27 16:13:57 +01:00
|
|
|
fi
|
|
|
|
|
2011-07-18 02:15:51 +02:00
|
|
|
# Add functions to fpath.
|
2011-07-28 22:59:15 +02:00
|
|
|
fpath=($OMZ/themes/*(/) $OMZ/plugins/${^plugins} $OMZ/functions $fpath)
|
2010-06-03 21:03:26 +02:00
|
|
|
|
2011-07-28 22:59:15 +02:00
|
|
|
# Load and initialize the completion system.
|
2011-07-15 04:50:40 +02:00
|
|
|
autoload -Uz compinit && compinit -i
|
|
|
|
|
2011-07-15 06:57:11 +02: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 04:50:40 +02:00
|
|
|
source "$function_file"
|
|
|
|
done
|
2009-10-01 09:55:07 +02:00
|
|
|
|
2011-06-01 08:48:26 +02:00
|
|
|
# Load all plugins defined in ~/.zshrc.
|
|
|
|
for plugin in $plugins; do
|
2011-07-15 06:57:11 +02:00
|
|
|
if [[ -f "$OMZ/plugins/$plugin/$plugin.plugin.zsh" ]]; then
|
|
|
|
source "$OMZ/plugins/$plugin/$plugin.plugin.zsh"
|
2011-04-12 23:41:09 +02:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2011-07-18 02:15:51 +02:00
|
|
|
# Load and run the prompt theming system.
|
|
|
|
autoload -Uz promptinit && promptinit -i
|
2011-04-29 11:24:29 +02:00
|
|
|
|
2011-05-01 18:33:28 +02:00
|
|
|
# Compile zcompdump, if modified, to increase startup speed.
|
2011-06-01 08:48:26 +02:00
|
|
|
if [[ "$HOME/.zcompdump" -nt "$HOME/.zcompdump.zwc" ]] || [[ ! -e "$HOME/.zcompdump.zwc" ]]; then
|
2011-05-01 18:33:28 +02:00
|
|
|
zcompile "$HOME/.zcompdump"
|
|
|
|
fi
|
2011-05-31 01:46:27 +02:00
|
|
|
|