How to disable Claude Code's verb spinner feature

Claude Code includes a default feature called the verb spinner that displays rotating whimsical gerunds during processing. The author finds this feature distracting, citing examples like seeing words such as 'Seasoning', 'Leavening', 'Perambulating', 'Musing', 'Crafting', 'Nucleating', 'Orbiting', 'Smooshing', 'Metamorphosing', 'Gusting', and 'Zesting' while waiting for responses to technical queries.
How to disable the verb spinner
You can turn off this feature by editing the Claude settings file. The source provides a specific configuration change:
"spinnerVerbs": {
"mode": "replace",
"verbs": [" "]
}
To implement this change:
- Edit the file at
~/.claude/settings.json - Insert a blank space in the verbs array as shown above
- Alternatively, use append mode if you want to add your own custom verbs
The author notes that imagining the prompt used to generate the original list of whimsical verbs only makes the feature more frustrating, describing it as 'West Coast whimsical-flavored bullshit' that doesn't belong in a development shell environment.
📖 Read the full source: HN AI Agents
👀 See Also

Claude Code Requires Specific Prompts, Not Vague Instructions
A developer reports that Claude Code produces better results with detailed prompts rather than vague instructions, citing experience with 4 billion tokens over 5 months.

Save on Claude Code Bills by Routing Planning Tokens to Cheaper Models
A user cut $40 in overage fees by splitting Claude Code workflows: planning steps go to Haiku 3.5, actual edits and decisions stay on Opus/Sonnet. A 30-line wrapper handles routing; setup took ~2 hours.

How to Prevent CLAUDE.md Rot: Treat Rules Like Code
After 18 months of real-world use, one developer shares four disciplines to keep CLAUDE.md under 100 lines: use it as an index, separate rules from sources, audit on every PR, and delete more than you add.

Workaround for Claude Mobile App Microphone Feedback Loop Error
A Reddit user shares a working workaround for the microphone feedback loop error in the Claude mobile app: installing the web version as a standalone Progressive Web App via Google Chrome, which bypasses the issue and provides access to different Claude models.