Added oh-my-zsh in all its glory

This commit is contained in:
2018-10-16 21:57:25 +02:00
parent 226726f5a8
commit c8fe9b52f0
616 changed files with 49532 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
src() {
local cache="$ZSH_CACHE_DIR"
autoload -U compinit zrecompile
compinit -i -d "$cache/zcomp-$HOST"
for f in ~/.zshrc "$cache/zcomp-$HOST"; do
zrecompile -p $f && command rm -f $f.zwc.old
done
# Use $SHELL if available; remove leading dash if login shell
[[ -n "$SHELL" ]] && exec ${SHELL#-} || exec zsh
}