2012-02-01 12:37:51 +08:00
|
|
|
#
|
2011-10-12 11:13:58 +08:00
|
|
|
# Initializes Oh My Zsh.
|
2012-02-01 12:37:51 +08:00
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Robby Russell <robby@planetargon.com>
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
2011-10-12 11:13:58 +08:00
|
|
|
|
|
|
|
# Check for the minimum supported version.
|
2012-01-19 11:02:23 +08:00
|
|
|
min_zsh_version='4.3.10'
|
2011-10-12 11:13:58 +08:00
|
|
|
if ! autoload -Uz is-at-least || ! is-at-least "$min_zsh_version"; then
|
2012-01-28 07:54:32 +08:00
|
|
|
print "omz: old shell detected, minimum required: $min_zsh_version" >&2
|
2011-10-12 11:13:58 +08:00
|
|
|
fi
|
|
|
|
unset min_zsh_version
|
2009-09-01 22:41:18 +08:00
|
|
|
|
2011-12-27 02:37:53 +08:00
|
|
|
# Disable color and theme in dumb terminals.
|
2011-06-01 14:48:26 +08:00
|
|
|
if [[ "$TERM" == 'dumb' ]]; then
|
2011-12-27 02:37:53 +08:00
|
|
|
zstyle ':omz:*:*' color 'no'
|
|
|
|
zstyle ':omz:prompt' theme 'off'
|
2011-02-27 23:13:57 +08:00
|
|
|
fi
|
|
|
|
|
2011-12-27 02:37:53 +08:00
|
|
|
# Get enabled plugins.
|
|
|
|
zstyle -a ':omz:load' plugin 'plugins'
|
|
|
|
|
2011-07-18 08:15:51 +08:00
|
|
|
# Add functions to fpath.
|
2011-09-24 08:11:33 +08:00
|
|
|
fpath=(
|
2011-10-12 11:13:58 +08:00
|
|
|
${0:h}/themes/*(/FN)
|
|
|
|
${plugins:+${0:h}/plugins/${^plugins}/{functions,completions}(/FN)}
|
|
|
|
${0:h}/{functions,completions}(/FN)
|
2011-09-24 08:11:33 +08:00
|
|
|
$fpath
|
|
|
|
)
|
|
|
|
|
2012-03-31 03:45:44 +08:00
|
|
|
# Autoload Zsh modules.
|
|
|
|
zstyle -a ':omz:load' module 'zsh_modules'
|
|
|
|
for zsh_module in "$zsh_modules[@]"; do
|
|
|
|
zmodload "${(z)zsh_module}"
|
|
|
|
done
|
|
|
|
unset zsh_modules zsh_module
|
|
|
|
|
|
|
|
# Autoload Zsh functions.
|
|
|
|
zstyle -a ':omz:load' function 'zsh_functions'
|
|
|
|
for zsh_function in "$zsh_functions[@]"; do
|
|
|
|
autoload -Uz "$zsh_function"
|
|
|
|
done
|
|
|
|
unset zsh_functions zsh_function
|
|
|
|
|
2011-09-24 08:11:33 +08:00
|
|
|
# Load and initialize the completion system ignoring insecure directories.
|
2011-07-15 10:50:40 +08:00
|
|
|
autoload -Uz compinit && compinit -i
|
|
|
|
|
2011-09-24 08:11:33 +08:00
|
|
|
# Source files (the order matters).
|
2011-10-11 09:49:47 +08:00
|
|
|
source "${0:h}/helper.zsh"
|
|
|
|
source "${0:h}/environment.zsh"
|
|
|
|
source "${0:h}/terminal.zsh"
|
2012-04-01 01:51:40 +08:00
|
|
|
source "${0:h}/editor.zsh"
|
2011-10-11 09:49:47 +08:00
|
|
|
source "${0:h}/completion.zsh"
|
|
|
|
source "${0:h}/history.zsh"
|
|
|
|
source "${0:h}/directory.zsh"
|
|
|
|
source "${0:h}/spectrum.zsh"
|
2012-03-30 00:06:15 +08:00
|
|
|
source "${0:h}/alias.zsh"
|
2011-10-11 09:49:47 +08:00
|
|
|
source "${0:h}/utility.zsh"
|
2009-10-01 15:55:07 +08:00
|
|
|
|
2011-09-11 13:02:10 +08:00
|
|
|
# Source plugins defined in ~/.zshrc.
|
2011-10-12 11:13:58 +08:00
|
|
|
for plugin in "$plugins[@]"; do
|
2011-12-30 12:19:16 +08:00
|
|
|
if [[ ! -d "${0:h}/plugins/$plugin" ]]; then
|
|
|
|
print "omz: no such plugin: $plugin" >&2
|
|
|
|
fi
|
|
|
|
|
2011-10-11 09:49:47 +08:00
|
|
|
if [[ -f "${0:h}/plugins/$plugin/init.zsh" ]]; then
|
|
|
|
source "${0:h}/plugins/$plugin/init.zsh"
|
2011-04-13 05:41:09 +08:00
|
|
|
fi
|
2012-03-29 00:19:53 +08:00
|
|
|
|
|
|
|
if (( $? == 0 )); then
|
2012-04-02 23:39:05 +08:00
|
|
|
zstyle ":omz:plugin:$plugin" loaded 'yes'
|
2012-03-29 00:19:53 +08:00
|
|
|
fi
|
2011-04-13 05:41:09 +08:00
|
|
|
done
|
2011-10-12 11:13:58 +08:00
|
|
|
unset plugin plugins
|
|
|
|
|
|
|
|
# Autoload Oh My Zsh functions.
|
|
|
|
for fdir in "$fpath[@]"; do
|
|
|
|
if [[ "$fdir" == ${0:h}/(|*/)functions ]]; then
|
2012-03-31 03:45:44 +08:00
|
|
|
for omz_function in $fdir/[^_.]*(N.:t); do
|
|
|
|
autoload -Uz "$omz_function"
|
2011-10-12 11:13:58 +08:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
done
|
2012-03-31 03:45:44 +08:00
|
|
|
unset fdir omz_function
|
2011-04-13 05:41:09 +08:00
|
|
|
|
2011-09-24 08:11:33 +08:00
|
|
|
# Set environment variables for launchd processes.
|
2011-09-05 12:32:39 +08:00
|
|
|
if [[ "$OSTYPE" == darwin* ]]; then
|
2011-12-29 04:06:21 +08:00
|
|
|
for env_var in PATH MANPATH; do
|
|
|
|
launchctl setenv "$env_var" "${(P)env_var}" &!
|
|
|
|
done
|
2012-01-28 07:54:32 +08:00
|
|
|
unset env_var
|
2011-09-05 12:32:39 +08:00
|
|
|
fi
|
|
|
|
|
2011-07-18 08:15:51 +08:00
|
|
|
# Load and run the prompt theming system.
|
2011-09-24 08:11:33 +08:00
|
|
|
autoload -Uz promptinit && promptinit
|
2011-04-29 17:24:29 +08:00
|
|
|
|
2011-12-27 02:37:53 +08:00
|
|
|
# Load the prompt theme.
|
|
|
|
zstyle -a ':omz:prompt' theme 'prompt_argv'
|
2012-03-13 07:56:03 +08:00
|
|
|
if (( $#prompt_argv > 0 )); then
|
|
|
|
prompt "$prompt_argv[@]"
|
|
|
|
else
|
|
|
|
prompt 'off'
|
|
|
|
fi
|
2011-12-27 02:37:53 +08:00
|
|
|
unset prompt_argv
|
|
|
|
|
2012-01-28 07:54:32 +08:00
|
|
|
# Compile the completion dump, to increase startup speed.
|
|
|
|
dump_file="$HOME/.zcompdump"
|
|
|
|
if [[ "$dump_file" -nt "${dump_file}.zwc" || ! -f "${dump_file}.zwc" ]]; then
|
|
|
|
zcompile "$dump_file"
|
2011-09-05 12:22:23 +08:00
|
|
|
fi
|
2012-01-28 07:54:32 +08:00
|
|
|
unset dump_file
|
2011-05-31 07:46:27 +08:00
|
|
|
|