2015-12-15 00:12:17 -05:00
|
|
|
#
|
2015-12-31 11:05:09 -05:00
|
|
|
# startup file read in interactive login shells
|
2015-12-15 00:12:17 -05:00
|
|
|
#
|
|
|
|
# The following code helps us by optimizing the existing framework.
|
2015-12-28 02:09:44 -05:00
|
|
|
# This includes zcompile, zcompdump, etc.
|
2015-12-15 00:12:17 -05:00
|
|
|
#
|
|
|
|
|
2015-12-28 02:09:44 -05:00
|
|
|
(
|
2018-04-09 19:09:07 -04:00
|
|
|
local dir file
|
2017-09-26 13:28:08 -04:00
|
|
|
setopt LOCAL_OPTIONS EXTENDED_GLOB
|
|
|
|
autoload -U zrecompile
|
|
|
|
|
|
|
|
# zcompile the completion cache; siginificant speedup
|
|
|
|
zrecompile -pq ${ZDOTDIR:-${HOME}}/${zcompdump_file:-.zcompdump}
|
2015-12-15 00:12:17 -05:00
|
|
|
|
2016-01-04 18:11:30 -05:00
|
|
|
# zcompile .zshrc
|
2017-09-26 13:28:08 -04:00
|
|
|
zrecompile -pq ${ZDOTDIR:-${HOME}}/.zshrc
|
|
|
|
|
|
|
|
# zcompile enabled module autoloaded functions
|
2018-01-03 10:16:45 -05:00
|
|
|
for dir in ${ZIM_HOME}/modules/${^zmodules}/functions(/FN); do
|
2018-04-09 19:12:34 -04:00
|
|
|
zrecompile -pq ${dir}.zwc ${dir}/^(_*|prompt_*_setup|*.*)(-.N)
|
2018-01-03 10:16:45 -05:00
|
|
|
done
|
2017-09-26 13:28:08 -04:00
|
|
|
|
2018-04-09 19:09:07 -04:00
|
|
|
# zcompile enabled module scripts
|
2018-04-25 09:59:19 -04:00
|
|
|
for file in ${ZIM_HOME}/modules/${^zmodules}/(^*test*/)#*.zsh{,-theme}(.NLk+1); do
|
2018-04-09 19:09:07 -04:00
|
|
|
zrecompile -pq ${file}
|
2016-01-04 18:11:30 -05:00
|
|
|
done
|
|
|
|
|
2017-09-26 13:28:08 -04:00
|
|
|
# zcompile all prompt setup scripts
|
|
|
|
for file in ${ZIM_HOME}/modules/prompt/functions/prompt_*_setup; do
|
|
|
|
zrecompile -pq ${file}
|
2016-02-27 19:43:19 -05:00
|
|
|
done
|
2015-12-28 02:09:44 -05:00
|
|
|
) &!
|