mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-12 08:10:07 +00:00
run configuration wizard automatically if no POWERLEVEL9K options are defined
This commit is contained in:
parent
89f3ec16d0
commit
2e5a085dbe
1 changed files with 13 additions and 1 deletions
|
@ -3277,7 +3277,18 @@ _p9k_precmd() {
|
||||||
unset _p9k_real_zle_rprompt_indent
|
unset _p9k_real_zle_rprompt_indent
|
||||||
fi
|
fi
|
||||||
|
|
||||||
_p9k_must_init && _p9k_init
|
if _p9k_must_init; then
|
||||||
|
if (( !__p9k_configured )); then
|
||||||
|
__p9k_configured=1
|
||||||
|
if [[ -z ${parameters[(i)POWERLEVEL9K_*]} ]] && _p9k_can_configure -q; then
|
||||||
|
if $__p9k_root_dir/internal/wizard.zsh -d $__p9k_root_dir; then
|
||||||
|
source $__p9k_cfg_path
|
||||||
|
_p9k_must_init
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
_p9k_init
|
||||||
|
fi
|
||||||
|
|
||||||
unsetopt localoptions
|
unsetopt localoptions
|
||||||
prompt_opts=(cr percent sp subst)
|
prompt_opts=(cr percent sp subst)
|
||||||
|
@ -4294,6 +4305,7 @@ _p9k_deinit() {
|
||||||
}
|
}
|
||||||
|
|
||||||
typeset -gi __p9k_enabled=0
|
typeset -gi __p9k_enabled=0
|
||||||
|
typeset -gi __p9k_configured=0
|
||||||
|
|
||||||
prompt_powerlevel9k_setup() {
|
prompt_powerlevel9k_setup() {
|
||||||
emulate -L zsh && setopt no_hist_expand extended_glob
|
emulate -L zsh && setopt no_hist_expand extended_glob
|
||||||
|
|
Loading…
Reference in a new issue