prezto/init.zsh

45 lines
1.1 KiB
Bash
Raw Normal View History

2012-02-01 05:37:51 +01:00
#
# Initializes Prezto.
2012-02-01 05:37:51 +01:00
#
# Authors:
# 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 "prezto: old shell detected, minimum required: $min_zsh_version" >&2
return 1
2011-10-12 05:13:58 +02:00
fi
unset min_zsh_version
2012-09-03 22:13:53 +02:00
# Source the Prezto configuration file.
if [[ -s "${ZDOTDIR:-$HOME}/.zpreztorc" ]]; then
source "${ZDOTDIR:-$HOME}/.zpreztorc"
fi
# Disable color and theme in dumb terminals.
if [[ "$TERM" == 'dumb' ]]; then
zstyle ':prezto:*:*' color 'no'
zstyle ':prezto:module:prompt' theme 'off'
2011-02-27 16:13:57 +01:00
fi
2012-03-28 18:41:39 +02:00
# Load Zsh modules.
zstyle -a ':prezto: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.
zstyle -a ':prezto: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"
# Load Prezto modules.
zstyle -a ':prezto:load' pmodule 'pmodules'
pmodload "$pmodules[@]"
unset pmodules
2011-10-12 05:13:58 +02:00