summaryrefslogtreecommitdiffstats
path: root/.claude/settings.json
blob: 8f028d40dbaf8e0e0f974de4a849dfd7d1f12d09 (plain)
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
{
  "permissions": {
    "allow": [
      "Bash(git status:*)",
      "Bash(git diff:*)",
      "Bash(git log:*)",
      "Bash(git ls-files:*)",
      "Bash(claude doctor:*)"
    ],
    "additionalDirectories": [
      "/home/tvanbesi/Projects/.claude/Projects memory"
    ]
  },
  "model": "fable",
  "hooks": {
    "Notification": [
      {
        "matcher": "permission_prompt|idle_prompt",
        "hooks": [
          {
            "type": "command",
            "command": "notify-send --app-name 'Claude Code' --icon utilities-terminal 'Claude Code' \"$(jq --raw-output '.message')\""
          }
        ]
      }
    ],
    "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": true,
    "pyright-lsp@claude-plugins-official": true
  },
  "extraKnownMarketplaces": {},
  "effortLevel": "high",
  "theme": "auto",
  "editorMode": "vim",
  "autoCompactEnabled": false
}