Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 787 Bytes

File metadata and controls

49 lines (36 loc) · 787 Bytes

FAQ

Common problems

Completions

If you encounter completion errors, try:

# Remove cached completions and regenerate
rm -f ~/.zcompdump*
compinit

For Sheldon plugin issues:

# Re-lock plugins
sheldon lock --update

Bug with multi-line spaces (iTerm2 Mac OS)

Solution Reinstall iTerm2

How to measure speed?

Solution

# Using time
time zsh -i -c exit

# Detailed profiling
PS4='+%D{%s.%9.}:%N:%i>' zsh -x

Prompt not showing?

If using Warp terminal, the built-in prompt is used automatically.

For other terminals, Starship is used as fallback:

# Check if starship is installed
starship --version

# If not, install it
brew install starship  # macOS
# or
curl -sS https://starship.rs/install.sh | sh  # Linux