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