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

Practical Claude Code Workflow Tips for Complex Development Projects
A Claude Pro user shares specific workflow strategies for developing complex audio plugins, including using planning mode for major features, creating context files, managing token usage, and implementing validation steps.

OpenClaw token usage investigation reveals configuration issues
A developer burned through their OpenAI Codex weekly subscription in 1.5 days and used Claude Code to identify configuration problems: Telegram bots firing on every message, web fetches returning raw CSS/JS, and orphan session files accumulating.

Annotation-Driven UI: How to Design Templates in Figma and Let Claude Extract Coordinates
Skip building a custom layout engine: design flat PNGs in Figma, draw colored rectangles for slots, feed both to Claude, and get editable area definitions with tap targets. One afternoon instead of weeks.

Running MiniMax M2.7 Q8_0 128K on 2x3090 with CPU Offloading – Real-World Benchmarks and Config
A user successfully runs MiniMax M2.7 at Q8_0 with 128K context on two RTX 3090s plus DDR4 RAM, achieving ~50 tps prompt processing and ~10 tps token generation, and shares their llama-server flags.