Those rotating words that appear while Claude Code is thinking - "Seasoning," "Perambulating," "Smooshing," "Metamorphosing" - have been quietly driving some developers up the wall.
The spinner verbs are a default feature in Claude Code's terminal interface. While Anthropic clearly intended them as playful personality, they can be genuinely distracting when you're deep in a coding session and your terminal keeps flashing words like "Crafting" at you. One developer described them as interfering with focus during actual shell work, which tracks with our own experience during long debugging sessions.
The fix is a one-line config change. Open ~/.claude/settings.json and add:
"spinnerVerbs": { "mode": "replace", "verbs": [" "] }
This replaces the word list with a blank space, giving you a clean, silent spinner. You can also use "append" mode if you want to keep the defaults and add your own words to the rotation.
It's a small thing, but small annoyances compound over hours of daily use. If you've been tolerating the whimsy and didn't know you could kill it, now you do.