1
0
Fork 0
mirror of synced 2024-05-27 12:31:12 -04:00
zimfw/templates/zlogin

60 lines
1.6 KiB
Plaintext
Raw Normal View History

2015-12-15 00:12:17 -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.
# This includes zcompile, zcompdump, etc.
2015-12-15 00:12:17 -05:00
#
(
# Function to determine the need of a zcompile. If the .zwc file
# does not exist, or the base file is newer, we need to compile.
# These jobs are asynchronous, and will not impact the interactive shell
zcompare() {
if [[ -s ${1} && ( ! -s ${1}.zwc || ${1} -nt ${1}.zwc) ]]; then
zcompile ${1}
fi
}
2015-12-15 00:12:17 -05:00
zim_mods=${ZIM_HOME}/modules
2016-01-04 18:11:30 -05:00
setopt EXTENDED_GLOB
# zcompile the completion cache; siginificant speedup.
for file in ${ZDOTDIR:-${HOME}}/.zcomp^(*.zwc)(.); do
zcompare ${file}
done
2015-12-15 00:12:17 -05:00
2016-01-04 18:11:30 -05:00
# zcompile .zshrc
2015-12-19 09:48:29 -05:00
zcompare ${ZDOTDIR:-${HOME}}/.zshrc
2015-12-16 02:23:18 -05:00
2016-01-04 18:11:30 -05:00
# zcompile some light module init scripts
zcompare ${zim_mods}/git/init.zsh
zcompare ${zim_mods}/utility/init.zsh
zcompare ${zim_mods}/pacman/init.zsh
zcompare ${zim_mods}/spectrum/init.zsh
zcompare ${zim_mods}/completion/init.zsh
zcompare ${zim_mods}/fasd/init.zsh
2016-01-04 18:11:30 -05:00
# zcompile all .zsh files in the custom module
for file in ${zim_mods}/custom/**/^(README.md|*.zwc)(.); do
2016-01-04 18:11:30 -05:00
zcompare ${file}
done
# zcompile all autoloaded functions
for file in ${zim_mods}/**/functions/^(*.zwc)(.); do
zcompare ${file}
done
2016-01-04 18:11:30 -05:00
# syntax-highlighting
for file in ${zim_mods}/syntax-highlighting/external/highlighters/**^test-data/*.zsh; do
2016-01-04 18:11:30 -05:00
zcompare ${file}
done
zcompare ${zim_mods}/syntax-highlighting/external/zsh-syntax-highlighting.zsh
# zsh-histery-substring-search
zcompare ${zim_mods}/history-substring-search/external/zsh-history-substring-search.zsh
2015-12-15 00:12:17 -05:00
) &!