-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclaude.json
More file actions
83 lines (83 loc) · 1.77 KB
/
claude.json
File metadata and controls
83 lines (83 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"model": "opus",
"hooks": {
"Notification": [
{
"hooks": [
{
"type": "command",
"command": "echo \"$KITTY_WINDOW_ID notification\" >> /tmp/claude.log"
}
]
}
],
"PermissionRequest": [
{
"hooks": [
{
"type": "command",
"command": "echo \"$KITTY_WINDOW_ID permission\" >> /tmp/claude.log"
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "echo \"$KITTY_WINDOW_ID stop\" >> /tmp/claude.log"
}
]
}
],
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "echo \"$KITTY_WINDOW_ID clear\" >> /tmp/claude.log"
}
]
}
],
"PreToolUse": [
{
"hooks": [
{
"type": "command",
"command": "echo \"$KITTY_WINDOW_ID clear\" >> /tmp/claude.log"
}
]
}
],
"SessionEnd": [
{
"hooks": [
{
"type": "command",
"command": "echo \"$KITTY_WINDOW_ID clear\" >> /tmp/claude.log"
}
]
}
]
},
"statusLine": {
"type": "command",
"command": "bash ~/synced/Projects/dotfiles/claude-statusline-command.sh"
},
"enabledPlugins": {
"context7@claude-plugins-official": true,
"playground@claude-plugins-official": true,
"superpowers@claude-plugins-official": true,
"typescript-lsp@claude-plugins-official": true,
"frontend-design@claude-plugins-official": true,
"rust-analyzer-lsp@claude-plugins-official": true
},
"spinnerVerbs": {
"mode": "replace",
"verbs": [
"Working"
]
}
}