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
|
2011-09-05 21:39:37 +02:00
|
|
|
COLOR='false'
|
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-28 23:06:45 +02:00
|
|
|
# Source function files.
|
|
|
|
source "$OMZ/functions/init.zsh"
|
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-09-05 06:32:39 +02:00
|
|
|
# Set PATH for Mac OS X GUI applications (requires re-login).
|
|
|
|
if [[ "$OSTYPE" == darwin* ]]; then
|
|
|
|
launchctl setenv PATH "$PATH" &!
|
|
|
|
fi
|
|
|
|
|
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-09-05 06:22:23 +02: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-31 01:46:27 +02:00
|
|
|
|