prezto/init.zsh

105 lines
2.4 KiB
Bash
Raw Normal View History

2012-02-01 05:37:51 +01:00
#
2011-10-12 05:13:58 +02:00
# Initializes Oh My Zsh.
2012-02-01 05:37:51 +01:00
#
# Authors:
# Robby Russell <robby@planetargon.com>
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-10-12 05:13:58 +02:00
# Check for the minimum supported version.
min_zsh_version='4.3.10'
2011-10-12 05:13:58 +02:00
if ! autoload -Uz is-at-least || ! is-at-least "$min_zsh_version"; then
print "omz: old shell detected, minimum required: $min_zsh_version" >&2
2011-10-12 05:13:58 +02:00
fi
unset min_zsh_version
# Disable color and theme in dumb terminals.
if [[ "$TERM" == 'dumb' ]]; then
zstyle ':omz:*:*' color 'no'
zstyle ':omz:prompt' theme 'off'
2011-02-27 16:13:57 +01:00
fi
2012-03-28 18:41:39 +02:00
# Get enabled OMZ modules.
zstyle -a ':omz:load' omodule 'omodules'
# Add functions to fpath.
fpath=(
2011-10-12 05:13:58 +02:00
${0:h}/themes/*(/FN)
2012-03-28 18:41:39 +02:00
${omodules:+${0:h}/modules/${^omodules}/{functions,completions}(/FN)}
$fpath
)
2012-03-28 18:41:39 +02:00
# Load Zsh modules.
zstyle -a ':omz:load' module 'zmodules'
for zmodule in "$zmodules[@]"; do
zmodload "${(z)zmodule}"
done
2012-03-28 18:41:39 +02:00
unset zmodules zmodule
# Autoload Zsh functions.
2012-03-28 18:41:39 +02:00
zstyle -a ':omz:load' function 'zfunctions'
for zfunction in "$zfunctions[@]"; do
autoload -Uz "$zfunction"
done
2012-03-28 18:41:39 +02:00
unset zfunctions zfunction
# Load and initialize the completion system ignoring insecure directories.
autoload -Uz compinit && compinit -i
# Source files (the order matters).
source "${0:h}/helper.zsh"
2012-03-28 18:41:39 +02:00
# Source modules defined in ~/.zshrc.
for omodule in "$omodules[@]"; do
if [[ ! -d "${0:h}/modules/$omodule" ]]; then
print "omz: no such module: $omodule" >&2
fi
2012-03-28 18:41:39 +02:00
if [[ -f "${0:h}/modules/$omodule/init.zsh" ]]; then
source "${0:h}/modules/$omodule/init.zsh"
fi
2012-03-28 18:19:53 +02:00
if (( $? == 0 )); then
2012-03-28 18:41:39 +02:00
zstyle ":omz:module:$omodule" loaded 'yes'
2012-03-28 18:19:53 +02:00
fi
done
2012-03-28 18:41:39 +02:00
unset omodule omodules
2011-10-12 05:13:58 +02:00
# Autoload Oh My Zsh functions.
for fdir in "$fpath[@]"; do
if [[ "$fdir" == ${0:h}/(|*/)functions ]]; then
2012-03-28 18:41:39 +02:00
for ofunction in $fdir/[^_.]*(N.:t); do
autoload -Uz "$ofunction"
2011-10-12 05:13:58 +02:00
done
fi
done
2012-03-28 18:41:39 +02:00
unset fdir ofunction
# Set environment variables for launchd processes.
if [[ "$OSTYPE" == darwin* ]]; then
2011-12-28 21:06:21 +01:00
for env_var in PATH MANPATH; do
launchctl setenv "$env_var" "${(P)env_var}" &!
done
unset env_var
fi
# Load and run the prompt theming system.
autoload -Uz promptinit && promptinit
# Load the prompt theme.
zstyle -a ':omz:prompt' theme 'prompt_argv'
2012-03-13 00:56:03 +01:00
if (( $#prompt_argv > 0 )); then
prompt "$prompt_argv[@]"
else
prompt 'off'
fi
unset prompt_argv
# 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"
fi
unset dump_file