2ea2ba2fc8
to load modules with `{module_name}.plugin.zsh` and `{module_name}.zsh` in order to improve compatibility. Closes ##257
57 lines
1.7 KiB
Bash
Executable file
57 lines
1.7 KiB
Bash
Executable file
|
|
|
|
#
|
|
# startup file read in interactive login shells
|
|
#
|
|
# The following code helps us by optimizing the existing framework.
|
|
# This includes zcompile, zcompdump, etc.
|
|
#
|
|
|
|
(
|
|
local dir file
|
|
setopt LOCAL_OPTIONS EXTENDED_GLOB
|
|
autoload -U zrecompile
|
|
|
|
# zcompile the completion cache; siginificant speedup
|
|
zrecompile -pq ${ZDOTDIR:-${HOME}}/${zcompdump_file:-.zcompdump}
|
|
|
|
# zcompile .zshrc
|
|
zrecompile -pq ${ZDOTDIR:-${HOME}}/.zshrc
|
|
|
|
# zcompile enabled module autoloaded functions
|
|
for dir in ${ZIM_HOME}/modules/${^zmodules}/functions(/FN); do
|
|
zrecompile -pq ${dir}.zwc ${dir}/^([_.]*|prompt_*_setup|README*|*.zwc|*.zwc.old)(-.N)
|
|
done
|
|
|
|
# zcompile enabled module init scripts
|
|
local zmodule zmodule_dir
|
|
for zmodule (${zmodules}); do
|
|
zmodule_dir=${ZIM_HOME}/modules/${zmodule}
|
|
if [[ -d ${zmodule_dir} ]]; then
|
|
for file (${zmodule_dir}/{,zsh-}${zmodule}.zsh-theme \
|
|
${zmodule_dir}/init.zsh \
|
|
${zmodule_dir}/{,zsh-}${zmodule}.plugin.zsh \
|
|
${zmodule_dir}/{,zsh-}${zmodule}.{z,}sh); do
|
|
if [[ -f ${file} ]]; then
|
|
zrecompile -pq ${file}
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
done
|
|
|
|
# zcompile all prompt setup scripts
|
|
for file in ${ZIM_HOME}/modules/prompt/functions/prompt_*_setup; do
|
|
zrecompile -pq ${file}
|
|
done
|
|
|
|
# syntax-highlighting
|
|
for file in ${ZIM_HOME}/modules/syntax-highlighting/external/highlighters/**^test-data/*.zsh; do
|
|
zrecompile -pq ${file}
|
|
done
|
|
zrecompile -pq ${ZIM_HOME}/modules/syntax-highlighting/external/zsh-syntax-highlighting.zsh
|
|
|
|
# zsh-histery-substring-search
|
|
zrecompile -pq ${ZIM_HOME}/modules/history-substring-search/external/zsh-history-substring-search.zsh
|
|
|
|
) &!
|