mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2025-02-16 15:54:29 +01:00
don't fetch gitstatusd if there is no git
This commit is contained in:
parent
a28d45005e
commit
4635fcacee
1 changed files with 16 additions and 12 deletions
|
@ -6412,6 +6412,7 @@ _p9k_precmd_impl() {
|
||||||
ret=$?
|
ret=$?
|
||||||
fi
|
fi
|
||||||
if (( ret == 0 )); then
|
if (( ret == 0 )); then
|
||||||
|
if (( $+commands[git] )); then
|
||||||
(
|
(
|
||||||
local -i pid
|
local -i pid
|
||||||
{
|
{
|
||||||
|
@ -6424,6 +6425,9 @@ _p9k_precmd_impl() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
else
|
||||||
|
( builtin source "$__p9k_root_dir"/internal/wizard.zsh )
|
||||||
|
fi
|
||||||
if (( $? )); then
|
if (( $? )); then
|
||||||
instant_prompt_disabled=1
|
instant_prompt_disabled=1
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue