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=(
|
2011-10-10 21:49:47 -04:00
|
|
|
${0:h}/themes/*(/N)
|
|
|
|
${plugins:+${0:h}/plugins/${^plugins}}
|
|
|
|
${0:h}/functions
|
|
|
|
${0:h}/completions
|
2011-09-23 20:11:33 -04:00
|
|
|
$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).
|
2011-10-10 21:49:47 -04:00
|
|
|
source "${0:h}/helper.zsh"
|
|
|
|
source "${0:h}/environment.zsh"
|
|
|
|
source "${0:h}/terminal.zsh"
|
|
|
|
source "${0:h}/keyboard.zsh"
|
|
|
|
source "${0:h}/completion.zsh"
|
|
|
|
source "${0:h}/history.zsh"
|
|
|
|
source "${0:h}/directory.zsh"
|
|
|
|
source "${0:h}/alias.zsh"
|
|
|
|
source "${0:h}/spectrum.zsh"
|
|
|
|
source "${0:h}/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-10-10 21:49:47 -04:00
|
|
|
if [[ -f "${0:h}/plugins/$plugin/init.zsh" ]]; then
|
|
|
|
source "${0:h}/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
|
|
|
|