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

Automating Claude Session Restarts with tmux and at
Use tmux and the at command to schedule automatic restarts of your Claude session when usage resets at odd hours.

Reddit user shares common Claude Code prompting mistakes with fixes
A developer using Claude for Node.js backend work identified 10 common prompting mistakes after months of use, including missing validation requirements and treating Claude as one-shot tool. They created a visual guide with fixes for each issue.

5 Patterns for Getting Better Results from Claude (Non-Technical Users)
Practical scaffolding, example-based prompting, negative instructions, persistent context, and source grounding — five patterns that consistently improve output quality from Claude, backed by six months of field experience.

How splitting context into separate files made Claude more consistent
A Reddit user shares a practical setup for Claude: split context into about-me.md, my-voice.md, and my-rules.md files; use a plan-before-execute flow; switch models per task; and give feedback instead of perfect prompts.