Created
August 21, 2026 06:41
-
-
Save dimitardanailov/cabec82631278a3df4ff3f39a3c79fa9 to your computer and use it in GitHub Desktop.
~/.claude/settings.json. The configuration follows: https://code.claude.com/docs/en/settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://json.schemastore.org/claude-code-settings.json", | |
| "model": "sonnet", | |
| "effortLevel": "medium", | |
| "autoCompactWindow": 400000, | |
| "fallbackModel": ["claude-sonnet-5", "claude-haiku-4-5"], | |
| "preferredNotifChannel": "terminal_bell", | |
| "awaySummaryEnabled": true, | |
| "permissions": { | |
| "allow": [ | |
| "Bash(git status)", | |
| "Bash(git diff:*)", | |
| "Bash(git log:*)", | |
| "Bash(yarn test:*)", | |
| "Bash(pnpm test:*)", | |
| "Bash(npx tsc --noEmit)", | |
| "Bash(grep:*)", | |
| "Bash(rg:*)", | |
| "Bash(sed:*)" | |
| ], | |
| "deny": [ | |
| "Read(.env*)", | |
| "Read(~/.aws/**)", | |
| "Read(~/.ssh/**)", | |
| "Bash(rm -rf:*)", | |
| "Bash(git push --force:*)" | |
| ] | |
| }, | |
| "env": { | |
| "BASH_DEFAULT_TIMEOUT_MS": "300000", | |
| "CLAUDE_CODE_SUBAGENT_MODEL": "claude-haiku-4-5", | |
| "CLAUDE_CODE_NO_FLICKER": "1" | |
| }, | |
| "hooks": { | |
| "Notification": [ | |
| { | |
| "hooks": [ | |
| { "type": "command", "command": "afplay /System/Library/Sounds/Glass.aiff" } | |
| ] | |
| } | |
| ] | |
| }, | |
| "statusLine": { | |
| "type": "command", | |
| "command": "~/.claude/statusline.sh", | |
| "padding": 0 | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment