mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-14 09:00:07 +00:00
correctly deduce p10k directory when using zprezto with zsh 5.1
see #174
This commit is contained in:
parent
49063ee757
commit
3434c0e0a9
1 changed files with 2 additions and 22 deletions
|
@ -17,36 +17,16 @@ else
|
||||||
local __p9k_restore_aliases=0
|
local __p9k_restore_aliases=0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
typeset -g __p9k_root_dir=${POWERLEVEL9K_INSTALLATION_DIR:-${${(%):-%x}:A:h}}
|
||||||
|
|
||||||
() {
|
() {
|
||||||
emulate -L zsh
|
emulate -L zsh
|
||||||
setopt no_hist_expand extended_glob no_prompt_{bang,subst} prompt_{cr,percent,sp}
|
setopt no_hist_expand extended_glob no_prompt_{bang,subst} prompt_{cr,percent,sp}
|
||||||
|
|
||||||
if (( $+__p9k_sourced )); then
|
if (( $+__p9k_sourced )); then
|
||||||
prompt_powerlevel9k_setup
|
prompt_powerlevel9k_setup
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
typeset -gr __p9k_sourced=1
|
typeset -gr __p9k_sourced=1
|
||||||
typeset -g __p9k_root_dir=''
|
|
||||||
|
|
||||||
if [[ -n $POWERLEVEL9K_INSTALLATION_DIR ]]; then
|
|
||||||
__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_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_root_dir=${${(%):-%x}:A:h}
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
typeset -gr __p9k_root_dir
|
|
||||||
source $__p9k_root_dir/internal/p10k.zsh || true
|
source $__p9k_root_dir/internal/p10k.zsh || true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue