diff options
Diffstat (limited to 'hooks/post-up')
-rwxr-xr-x | hooks/post-up/zsh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hooks/post-up/zsh b/hooks/post-up/zsh index f964e2b..78eb093 100755 --- a/hooks/post-up/zsh +++ b/hooks/post-up/zsh @@ -1,12 +1,12 @@ #!/usr/bin/env zsh ZDOTDIR="${XDG_CONFIG_HOME:~/.config}/zsh" -if [[ ! -d ~/.zsh/cache ]] +if [[ ! -d ~/.cache/zsh ]] then - mkdir -p ~/.zsh/cache + mkdir -p ~/.cache/zsh fi -fasd_cache=~/.zsh/cache/fasd-init-zsh +fasd_cache=~/.cache/zsh/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 @@ -27,7 +27,7 @@ if [[ $OSTYPE == freebsd* ]]; then fi zrecompile -p -R $ZDOTDIR/.zshrc.zwc $zfiles -- \ - -M .zsh/cache/compdump + -M .cache/zsh/compdump for fp in $ZDOTDIR/functions/*(/); do zrecompile -p $fp $fp/* |