cleanup
This commit is contained in:
parent
e28d0c37c9
commit
0378a0a54c
4 changed files with 17 additions and 17 deletions
|
@ -25,28 +25,28 @@ fi
|
|||
return
|
||||
fi
|
||||
typeset -gr __p9k_sourced=1
|
||||
typeset -g __p9k_installation_dir=''
|
||||
typeset -g __p9k_root_dir=''
|
||||
|
||||
if [[ -n $POWERLEVEL9K_INSTALLATION_DIR ]]; then
|
||||
__p9k_installation_dir=${POWERLEVEL9K_INSTALLATION_DIR:A}
|
||||
__p9k_root_dir=${POWERLEVEL9K_INSTALLATION_DIR:A}
|
||||
else
|
||||
if [[ ${(%):-%N} == '(eval)' ]]; then
|
||||
if [[ $0 == '-antigen-load' && -r powerlevel9k.zsh-theme ]]; then
|
||||
# Antigen uses eval to load things so it can change the plugin (!!)
|
||||
# https://github.com/zsh-users/antigen/issues/581
|
||||
__p9k_installation_dir=$PWD
|
||||
__p9k_root_dir=$PWD
|
||||
else
|
||||
>&2 print -P '%F{red}[ERROR]%f Powerlevel10k cannot figure out its installation directory.'
|
||||
>&2 print -P 'Please set %F{green}POWERLEVEL9K_INSTALLATION_DIR.%f'
|
||||
return
|
||||
fi
|
||||
else
|
||||
__p9k_installation_dir=${${(%):-%x}:A:h}
|
||||
__p9k_root_dir=${${(%):-%x}:A:h}
|
||||
fi
|
||||
fi
|
||||
|
||||
typeset -gr __p9k_installation_dir
|
||||
source $__p9k_installation_dir/internal/p10k.zsh || true
|
||||
typeset -gr __p9k_root_dir
|
||||
source $__p9k_root_dir/internal/p10k.zsh || true
|
||||
}
|
||||
|
||||
(( ! __p9k_restore_aliases )) || setopt aliases
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue