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
|
{
"permissions": {
"allow": [
"Bash(git status:*)",
"Bash(git diff:*)",
"Bash(git log:*)"
],
"additionalDirectories": [
"/home/tvanbesi/Projects/.claude/Projects memory"
]
},
"hooks": {
"PostToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "~/.claude/hooks/clang-format.sh"
},
{
"type": "command",
"command": "~/.claude/hooks/bash-format.sh"
},
{
"type": "command",
"command": "~/.claude/hooks/markdown-format.sh"
},
{
"type": "command",
"command": "~/.claude/hooks/cmake-format.sh"
},
{
"type": "command",
"command": "~/.claude/hooks/qml-format.sh"
},
{
"type": "command",
"command": "~/.claude/hooks/black-format.sh"
},
{
"type": "command",
"command": "~/.claude/hooks/php-cs-fixer.sh"
}
]
}
]
},
"statusLine": {
"type": "command",
"command": "/home/tvanbesi/.claude/hooks/status-line.sh"
},
"enabledPlugins": {
"clangd-lsp@claude-plugins-official": true,
"lua-lsp@claude-plugins-official": false,
"pyright-lsp@claude-plugins-official": true,
"lua-lsp-local@local-lsp": true
},
"extraKnownMarketplaces": {
"local-lsp": {
"source": {
"source": "directory",
"path": "/home/tvanbesi/.claude/lsp-marketplace"
}
}
},
"theme": "auto",
"editorMode": "vim",
"autoCompactEnabled": false,
"effortLevel": "high"
}
|