prezto/init.zsh

41 lines
1,007 B
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
return 1
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-04-09 00:37:22 +02:00
for zmodule ("$zmodules[@]") zmodload "zsh/${(z)zmodule}"
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-04-09 00:37:22 +02:00
for zfunction ("$zfunctions[@]") autoload -Uz "$zfunction"
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