Commit fcfa3239 authored by Marc Cornellà's avatar Marc Cornellà
Browse files

Use cache folder inside $ZSH, delete with unaliased rm

parent a9061f34
zsh_cache=$HOME/.zsh_cache
mkdir -p $zsh_cache
# reload zshrc # reload zshrc
function src() function src()
{ {
autoload -U compinit zrecompile autoload -U compinit zrecompile
compinit -d $zsh_cache/zcomp-$HOST compinit -d "$ZSH/cache/zcomp-$HOST"
for f in $HOME/.zshrc $zsh_cache/zcomp-$HOST; do
zrecompile -p $f && rm -f $f.zwc.old for f in ~/.zshrc "$ZSH/cache/zcomp-$HOST"; do
zrecompile -p $f && command rm -f $f.zwc.old
done done
source ~/.zshrc source ~/.zshrc
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment