This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/init.zsh

45 lines
1.1 KiB
Bash
Raw Normal View History

2012-01-31 23:37:51 -05:00
#
# Initializes Prezto.
2012-01-31 23:37:51 -05:00
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-10-11 23:13:58 -04:00
# Check for the minimum supported version.
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
print "prezto: old shell detected, minimum required: $min_zsh_version" >&2
return 1
2011-10-11 23:13:58 -04:00
fi
unset min_zsh_version
2012-09-03 16:13:53 -04: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 10:13:57 -05:00
fi
2012-03-28 12:41:39 -04:00
# Load Zsh modules.
zstyle -a ':prezto: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,}
# Autoload Zsh functions.
zstyle -a ':prezto: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,}
# 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-11 23:13:58 -04:00