all repos — nixfiles @ abaa898a029505446c6f8cbf3a45d17f9e15a571

System and user configuration, managed by nix and home-manager

zsh: use .cache/zsh instead of .zsh/cache

Alan Pearce
commit

abaa898a029505446c6f8cbf3a45d17f9e15a571

parent

65f9082920ad3d3d92929d68a125986a8c70cd0b

1 file changed, 4 insertions(+), 4 deletions(-)

jump to
M hooks/post-up/zshhooks/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 @@ zfiles+=$ZDOTDIR/freebsd.zsh
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/*