2012-01-31 23:37:51 -05:00
|
|
|
#
|
2011-10-11 23:13:58 -04:00
|
|
|
# Initializes Oh My Zsh.
|
2012-01-31 23:37:51 -05:00
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Robby Russell <robby@planetargon.com>
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
2011-10-11 23:13:58 -04:00
|
|
|
|
|
|
|
# Check for the minimum supported version.
|
2012-01-18 22:02:23 -05:00
|
|
|
min_zsh_version='4.3.10'
|
2011-10-11 23:13:58 -04:00
|
|
|
if ! autoload -Uz is-at-least || ! is-at-least "$min_zsh_version"; then
|
2012-01-27 18:54:32 -05:00
|
|
|
print "omz: old shell detected, minimum required: $min_zsh_version" >&2
|
2011-10-11 23:13:58 -04:00
|
|
|
fi
|
|
|
|
unset min_zsh_version
|
2009-09-01 10:41:18 -04:00
|
|
|
|
2011-12-26 13:37:53 -05:00
|
|
|
# Disable color and theme in dumb terminals.
|
2011-06-01 02:48:26 -04:00
|
|
|
if [[ "$TERM" == 'dumb' ]]; then
|
2011-12-26 13:37:53 -05:00
|
|
|
zstyle ':omz:*:*' color 'no'
|
|
|
|
zstyle ':omz:prompt' theme 'off'
|
2011-02-27 10:13:57 -05:00
|
|
|
fi
|
|
|
|
|
2011-12-26 13:37:53 -05:00
|
|
|
# Get enabled plugins.
|
|
|
|
zstyle -a ':omz:load' plugin 'plugins'
|
|
|
|
|
2011-07-17 20:15:51 -04:00
|
|
|
# Add functions to fpath.
|
2011-09-23 20:11:33 -04:00
|
|
|
fpath=(
|
2011-10-11 23:13:58 -04:00
|
|
|
${0:h}/themes/*(/FN)
|
|
|
|
${plugins:+${0:h}/plugins/${^plugins}/{functions,completions}(/FN)}
|
|
|
|
${0:h}/{functions,completions}(/FN)
|
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
|
|
|
|
2012-01-27 18:54:32 -05:00
|
|
|
# Autoload Zsh functions.
|
2011-10-11 23:13:58 -04:00
|
|
|
autoload -Uz age
|
|
|
|
autoload -Uz zargs
|
|
|
|
autoload -Uz zcalc
|
|
|
|
autoload -Uz zmv
|
|
|
|
|
2011-09-11 01:02:10 -04:00
|
|
|
# Source plugins defined in ~/.zshrc.
|
2011-10-11 23:13:58 -04:00
|
|
|
for plugin in "$plugins[@]"; do
|
2011-12-29 23:19:16 -05:00
|
|
|
if [[ ! -d "${0:h}/plugins/$plugin" ]]; then
|
|
|
|
print "omz: no such plugin: $plugin" >&2
|
|
|
|
fi
|
|
|
|
|
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
|
2012-03-28 12:19:53 -04:00
|
|
|
|
|
|
|
if (( $? == 0 )); then
|
|
|
|
zstyle ":omz:plugin:$plugin" enable 'yes'
|
|
|
|
fi
|
2011-04-12 17:41:09 -04:00
|
|
|
done
|
2011-10-11 23:13:58 -04:00
|
|
|
unset plugin plugins
|
|
|
|
|
|
|
|
# Autoload Oh My Zsh functions.
|
|
|
|
for fdir in "$fpath[@]"; do
|
|
|
|
if [[ "$fdir" == ${0:h}/(|*/)functions ]]; then
|
2012-01-27 18:54:32 -05:00
|
|
|
for func in $fdir/[^_.]*(N.:t); do
|
|
|
|
autoload -Uz $func
|
2011-10-11 23:13:58 -04:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
done
|
2012-01-27 18:54:32 -05:00
|
|
|
unset fdir func
|
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
|
2011-12-28 15:06:21 -05:00
|
|
|
for env_var in PATH MANPATH; do
|
|
|
|
launchctl setenv "$env_var" "${(P)env_var}" &!
|
|
|
|
done
|
2012-01-27 18:54:32 -05:00
|
|
|
unset env_var
|
2011-09-05 00:32:39 -04:00
|
|
|
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-12-26 13:37:53 -05:00
|
|
|
# Load the prompt theme.
|
|
|
|
zstyle -a ':omz:prompt' theme 'prompt_argv'
|
2012-03-12 19:56:03 -04:00
|
|
|
if (( $#prompt_argv > 0 )); then
|
|
|
|
prompt "$prompt_argv[@]"
|
|
|
|
else
|
|
|
|
prompt 'off'
|
|
|
|
fi
|
2011-12-26 13:37:53 -05:00
|
|
|
unset prompt_argv
|
|
|
|
|
2012-01-27 18:54:32 -05: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 00:22:23 -04:00
|
|
|
fi
|
2012-01-27 18:54:32 -05:00
|
|
|
unset dump_file
|
2011-05-30 19:46:27 -04:00
|
|
|
|