Skip to content

Commit

Permalink
wizard: prefer POWERLEVEL9K_MODE=nerdfont-v3 over nerdfont-complete"
Browse files Browse the repository at this point in the history
The preference for nerdfont-complete was necessitated by a bug
in Windows Terminal that has since been fixed.

This reverts commit b474978.

  wizard: prefer POWERLEVEL9K_MODE=nerdfont-complete over nerdfont-v3

See the reverted commit for details on the Windows Terminal bug.
  • Loading branch information
romkatv committed Jun 28, 2024
1 parent bde5ca4 commit df8ed16
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions internal/wizard.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -2142,16 +2142,16 @@ while true; do
elif (( ! cap_diamond )); then
POWERLEVEL9K_MODE=awesome-fontconfig
else
ask_arrow '\uFC35' || continue
ask_arrow '\UF0737' || continue
if (( cap_arrow )); then
POWERLEVEL9K_MODE=nerdfont-complete
ask_width || continue
fi
if (( cap_arrow )); then
POWERLEVEL9K_MODE=nerdfont-v3
else
ask_arrow '\UF0737' "Let's try another one." || continue
if (( cap_arrow )); then
ask_width || continue
fi
ask_arrow '\uFC35' "Let's try another one." || continue
if (( cap_arrow )); then
POWERLEVEL9K_MODE=nerdfont-v3
POWERLEVEL9K_MODE=nerdfont-complete
else
POWERLEVEL9K_MODE=awesome-fontconfig
ask_python || continue
Expand Down

0 comments on commit df8ed16

Please sign in to comment.