1
0
mirror of https://git.decapod.one/brethil/dotfiles synced 2024-06-26 10:28:34 +02:00

fix mkdir zsh cache

fixup 8a8d061
This commit is contained in:
bretello 2020-12-08 22:17:28 +01:00
parent 64ade8d864
commit 4b3b12db5b
Signed by: brethil
GPG Key ID: 876AAC6290170FE7

View File

@ -9,7 +9,7 @@ export VIRTUAL_ENV_DISABLE_PROMPT=true
_ZSH_CACHE="${HOME}/.cache/zsh"
if [[ ! -d "${HOME}/.cache/zsh" ]]; then mkdir "${HOME}/.cache/zsh"; fi
if [[ ! -d "${_ZSH_CACHE}" ]]; then mkdir -p "${_ZSH_CACHE}"; fi
# Source all zsh plugins
source <(antibody init)