bail out when the theme is being sourced second time

pull/22/head
romkatv 6 years ago
parent 45588cc28a
commit 0fa2f7ba65

@ -20,6 +20,11 @@
#zstyle ':vcs_info:*+*:*' debug true #zstyle ':vcs_info:*+*:*' debug true
#set -o xtrace #set -o xtrace
# Bail out if it's not the first time the file is being sourced.
# Second sourcing will cause mayhem.
[[ -v _P9K_SOURCED ]] && return
readonly _P9K_SOURCED=1
typeset -g _P9K_INSTALLATION_DIR typeset -g _P9K_INSTALLATION_DIR
# Try to set the installation path # Try to set the installation path

Loading…
Cancel
Save