ZSH: Beginning of reconfiguring everything

This commit is contained in:
2024-10-28 12:31:50 +01:00
parent e130455648
commit 154209ffd7
31 changed files with 145 additions and 413 deletions

View File

@ -0,0 +1,8 @@
## Purge all compiled zwc files
function zwcpurge () {
autoload -Uz zrecompile
for zsh_file in $(find ${ZDOTDIR} -maxdepth 3 -type f \( -name "*.zwc" -o -name "*.zwc.old" \)); do
rm -f ${zsh_file}
done
}