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'
|
2012-04-02 18:51:00 -04:00
|
|
|
zstyle ':omz:module:prompt' theme 'off'
|
2011-02-27 10:13:57 -05:00
|
|
|
fi
|
|
|
|
|
2012-03-28 12:41:39 -04:00
|
|
|
# Load Zsh modules.
|
2012-04-02 18:51:00 -04:00
|
|
|
zstyle -a ':omz:load' zmodule 'zmodules'
|
2012-04-08 18:37:22 -04:00
|
|
|
for zmodule ("$zmodules[@]") zmodload "zsh/${(z)zmodule}"
|
2012-04-02 18:51:00 -04:00
|
|
|
unset zmodule{s,}
|
2012-03-30 15:45:44 -04:00
|
|
|
|
|
|
|
# Autoload Zsh functions.
|
2012-04-02 18:51:00 -04:00
|
|
|
zstyle -a ':omz:load' zfunction 'zfunctions'
|
2012-04-08 18:37:22 -04:00
|
|
|
for zfunction ("$zfunctions[@]") autoload -Uz "$zfunction"
|
2012-04-02 18:51:00 -04:00
|
|
|
unset zfunction{s,}
|
2011-07-14 22:50:40 -04:00
|
|
|
|
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"
|
2009-10-01 03:55:07 -04:00
|
|
|
|
2012-03-28 12:41:39 -04:00
|
|
|
# Source modules defined in ~/.zshrc.
|
2012-04-02 18:51:00 -04:00
|
|
|
zstyle -a ':omz:load' omodule 'omodules'
|
|
|
|
omodload "$omodules[@]"
|
|
|
|
unset omodules
|
2011-10-11 23:13:58 -04:00
|
|
|
|
2012-04-02 18:51:00 -04: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
|
|
|
|
|
2012-01-27 18:54:32 -05:00
|
|
|
# Compile the completion dump, to increase startup speed.
|
|
|
|
dump_file="$HOME/.zcompdump"
|
2012-04-16 14:21:29 -04:00
|
|
|
if [[ "$dump_file" -nt "${dump_file}.zwc" || ! -s "${dump_file}.zwc" ]]; then
|
2012-01-27 18:54:32 -05:00
|
|
|
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
|
|
|
|