prezto/init.zsh

59 lines
1.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'
2012-04-03 00:51:00 +02:00
zstyle ':omz:module:prompt' theme 'off'
2011-02-27 16:13:57 +01:00
fi
2012-03-28 18:41:39 +02:00
# Load Zsh modules.
2012-04-03 00:51:00 +02:00
zstyle -a ':omz:load' zmodule 'zmodules'
2012-03-28 18:41:39 +02:00
for zmodule in "$zmodules[@]"; do
2012-04-03 00:51:00 +02:00
zmodload "zsh/${(z)zmodule}"
done
2012-04-03 00:51:00 +02:00
unset zmodule{s,}
# Autoload Zsh functions.
2012-04-03 00:51:00 +02:00
zstyle -a ':omz:load' zfunction 'zfunctions'
2012-03-28 18:41:39 +02:00
for zfunction in "$zfunctions[@]"; do
autoload -Uz "$zfunction"
done
2012-04-03 00:51:00 +02:00
unset zfunction{s,}
# Source files (the order matters).
source "${0:h}/helper.zsh"
2012-03-28 18:41:39 +02:00
# Source modules defined in ~/.zshrc.
2012-04-03 00:51:00 +02:00
zstyle -a ':omz:load' omodule 'omodules'
omodload "$omodules[@]"
unset omodules
2011-10-12 05:13:58 +02:00
2012-04-03 00:51:00 +02:00
# Set environment variables for launchd processes.
if [[ "$OSTYPE" == darwin* ]]; then
for env_var in PATH MANPATH; do
launchctl setenv "$env_var" "${(P)env_var}" &!
done
unset env_var
fi
# 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