12e4ee29ef
Fail loading zim if zsh version < 5.0. Also fix git-info failing in zsh 5.0.8 as reported in #176 and #177. Closes #201. Fixes #176. Fixes #184.
52 lines
1.3 KiB
Bash
Executable file
52 lines
1.3 KiB
Bash
Executable file
#
|
|
# Zim initializition
|
|
#
|
|
|
|
autoload -Uz is-at-least
|
|
if ! is-at-least 5.0; then
|
|
print "ERROR: Zim didn't start. You're using zsh version ${ZSH_VERSION}, and versions < 5.0 are not supported. Update your zsh." >&2
|
|
return 1
|
|
fi
|
|
|
|
# Define zim location
|
|
ZIM="${ZDOTDIR:-${HOME}}/.zim"
|
|
|
|
# Source user configuration
|
|
if [[ -s "${ZDOTDIR:-${HOME}}/.zimrc" ]]; then
|
|
source "${ZDOTDIR:-${HOME}}/.zimrc"
|
|
fi
|
|
|
|
load_zim_module() {
|
|
local wanted_module
|
|
|
|
for wanted_module (${zmodules}); do
|
|
if [[ -s "${ZIM}/modules/${wanted_module}/init.zsh" ]]; then
|
|
source "${ZIM}/modules/${wanted_module}/init.zsh"
|
|
elif [[ ! -d "${ZIM}/modules/${wanted_module}" ]]; then
|
|
print "No such module \"${wanted_module}\"." >&2
|
|
fi
|
|
done
|
|
}
|
|
|
|
load_zim_function() {
|
|
local function_glob='^([_.]*|prompt_*_setup|README*)(-.N:t)'
|
|
local mod_function
|
|
|
|
# autoload searches fpath for function locations; add enabled module function paths
|
|
fpath=(${${zmodules}:+${ZIM}/modules/${^zmodules}/functions(/FN)} ${fpath})
|
|
|
|
function {
|
|
setopt LOCAL_OPTIONS EXTENDED_GLOB
|
|
|
|
for mod_function in ${ZIM}/modules/${^zmodules}/functions/${~function_glob}; do
|
|
autoload -Uz ${mod_function}
|
|
done
|
|
}
|
|
}
|
|
|
|
# initialize zim modules
|
|
load_zim_function
|
|
load_zim_module
|
|
|
|
unset zmodules
|
|
unfunction load_zim_{module,function}
|