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
|
2011-09-05 19:39:37 +00:00
|
|
|
COLOR='false'
|
2011-02-27 15:13:57 +00:00
|
|
|
fi
|
|
|
|
|
2011-07-18 00:15:51 +00:00
|
|
|
# Add functions to fpath.
|
2011-09-24 00:11:33 +00:00
|
|
|
fpath=(
|
|
|
|
$OMZ/themes/*(/N)
|
|
|
|
${plugins:+$OMZ/plugins/${^plugins}}
|
|
|
|
$OMZ/functions
|
|
|
|
$fpath
|
|
|
|
)
|
|
|
|
|
|
|
|
# Load and initialize the completion system ignoring insecure directories.
|
2011-07-15 02:50:40 +00:00
|
|
|
autoload -Uz compinit && compinit -i
|
|
|
|
|
2011-09-24 00:11:33 +00:00
|
|
|
# Source files (the order matters).
|
|
|
|
source "$OMZ/helper.zsh"
|
|
|
|
source "$OMZ/environment.zsh"
|
|
|
|
source "$OMZ/terminal.zsh"
|
|
|
|
source "$OMZ/keyboard.zsh"
|
|
|
|
source "$OMZ/completion.zsh"
|
|
|
|
source "$OMZ/history.zsh"
|
|
|
|
source "$OMZ/directory.zsh"
|
|
|
|
source "$OMZ/alias.zsh"
|
|
|
|
source "$OMZ/spectrum.zsh"
|
|
|
|
source "$OMZ/utility.zsh"
|
2009-10-01 07:55:07 +00:00
|
|
|
|
2011-09-11 05:02:10 +00:00
|
|
|
# Source plugins defined in ~/.zshrc.
|
2011-06-01 06:48:26 +00:00
|
|
|
for plugin in $plugins; do
|
2011-09-11 05:02:10 +00:00
|
|
|
if [[ -f "$OMZ/plugins/$plugin/init.zsh" ]]; then
|
|
|
|
source "$OMZ/plugins/$plugin/init.zsh"
|
2011-04-12 21:41:09 +00:00
|
|
|
fi
|
|
|
|
done
|
2011-09-24 00:11:33 +00:00
|
|
|
unset plugin
|
|
|
|
unset plugins
|
2011-04-12 21:41:09 +00:00
|
|
|
|
2011-09-24 00:11:33 +00:00
|
|
|
# Set environment variables for launchd processes.
|
2011-09-05 04:32:39 +00:00
|
|
|
if [[ "$OSTYPE" == darwin* ]]; then
|
|
|
|
launchctl setenv PATH "$PATH" &!
|
|
|
|
fi
|
|
|
|
|
2011-07-18 00:15:51 +00:00
|
|
|
# Load and run the prompt theming system.
|
2011-09-24 00:11:33 +00:00
|
|
|
autoload -Uz promptinit && promptinit
|
2011-04-29 09:24:29 +00:00
|
|
|
|
2011-09-05 04:22:23 +00: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-30 23:46:27 +00:00
|
|
|
|