blob: f964e2bd9dd43e8c1fe68a90cd5d16283742cf71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/usr/bin/env zsh
ZDOTDIR="${XDG_CONFIG_HOME:~/.config}/zsh"
if [[ ! -d ~/.zsh/cache ]]
then
mkdir -p ~/.zsh/cache
fi
fasd_cache=~/.zsh/cache/fasd-init-zsh
if [[ ! -s "$fasd_cache" || $ZDOTDIR/functions/fasd/fasd -nt "$fasd_cache" ]]; then
$ZDOTDIR/functions/fasd/fasd --init posix-alias zsh-hook zsh-ccomp zsh-ccomp-install zsh-wcomp zsh-wcomp-install >! "$fasd_cache"
fi
autoload -U zrecompile
local -a zfiles
zfiles=(
$ZDOTDIR/functions/fasd/fasd
$fasd_cache
$ZDOTDIR/zshrc
)
if [[ -f $ZDOTDIR/${HOST%%.*}.zsh ]]; then
zfiles+=$ZDOTDIR/${HOST%%.*}.zsh
fi
if [[ $OSTYPE == freebsd* ]]; then
zfiles+=$ZDOTDIR/freebsd.zsh
fi
zrecompile -p -R $ZDOTDIR/.zshrc.zwc $zfiles -- \
-M .zsh/cache/compdump
for fp in $ZDOTDIR/functions/*(/); do
zrecompile -p $fp $fp/*
done
|