From db938620626d1dfc40e31d68f18124b26d239a43 Mon Sep 17 00:00:00 2001 From: Daniel Bauer Date: Fri, 10 Oct 2025 14:26:03 +0200 Subject: [PATCH 1/4] update claude model --- dot_claude/settings.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dot_claude/settings.json b/dot_claude/settings.json index 59cc9b9..694d58a 100644 --- a/dot_claude/settings.json +++ b/dot_claude/settings.json @@ -1,11 +1,11 @@ { "$schema": "https://json.schemastore.org/claude-code-settings.json", "includeCoAuthoredBy": false, - "model": "opusplan", + "enableAllProjectMcpServers": true, "statusLine": { "type": "command", "command": "~/.claude/statusline.sh", "padding": 0 }, - "enableAllProjectMcpServers": true + "model": "opusplan" } From 4a9dc2710bf6a566acaaae489686c4a0b2a6aad5 Mon Sep 17 00:00:00 2001 From: Daniel Bauer Date: Fri, 28 Nov 2025 15:12:27 +0100 Subject: [PATCH 2/4] update --- dot_aliases | 2 ++ dot_claude/settings.json | 37 ++++++++++++++++++++++++++++++++++++- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/dot_aliases b/dot_aliases index 40d302c..0907b50 100644 --- a/dot_aliases +++ b/dot_aliases @@ -33,3 +33,5 @@ alias pbpaste='xsel --clipboard --output' alias pp=pbpaste alias clip='xsel --clipboard' +# keepass +alias kp=keepassxc-cli diff --git a/dot_claude/settings.json b/dot_claude/settings.json index 694d58a..4de1f3c 100644 --- a/dot_claude/settings.json +++ b/dot_claude/settings.json @@ -7,5 +7,40 @@ "command": "~/.claude/statusline.sh", "padding": 0 }, - "model": "opusplan" + "enabledPlugins": { + "code-review@claude-code-marketplace": true + }, + "alwaysThinkingEnabled": false, + "hooks": { + "PreToolUse": [ + { + "command": "~/.claude/hooks/pre_tool_use_uv.py", + "tools": ["Bash", "Run"], + "timeout": 10000 + } + ], + "Notification": [ + { + "command": "~/.claude/hooks/notification_uv.py", + "timeout": 5000 + } + ], + "PostToolUse": [ + { + "matcher": "Write|Edit|MultiEdit", + "hooks": [ + "type": "command", + "~/.claude/hooks/post_tool_lint_uv_ruff.sh" + ] + }, + { + "matcher": "Write|Edit|MultiEdit", + "hooks": [ + "type": "command", + "~/.claude/hooks/post_tool_uv_pytest.sh" + ] + } + + ] + } } From cd3d0529e6648ca35fabfe9d3ffbec84ad40d868 Mon Sep 17 00:00:00 2001 From: Daniel Bauer Date: Fri, 28 Nov 2025 15:13:37 +0100 Subject: [PATCH 3/4] remove claude hooks (not working anyways) --- dot_claude/settings.json | 34 +--------------------------------- 1 file changed, 1 insertion(+), 33 deletions(-) diff --git a/dot_claude/settings.json b/dot_claude/settings.json index 4de1f3c..a90705a 100644 --- a/dot_claude/settings.json +++ b/dot_claude/settings.json @@ -10,37 +10,5 @@ "enabledPlugins": { "code-review@claude-code-marketplace": true }, - "alwaysThinkingEnabled": false, - "hooks": { - "PreToolUse": [ - { - "command": "~/.claude/hooks/pre_tool_use_uv.py", - "tools": ["Bash", "Run"], - "timeout": 10000 - } - ], - "Notification": [ - { - "command": "~/.claude/hooks/notification_uv.py", - "timeout": 5000 - } - ], - "PostToolUse": [ - { - "matcher": "Write|Edit|MultiEdit", - "hooks": [ - "type": "command", - "~/.claude/hooks/post_tool_lint_uv_ruff.sh" - ] - }, - { - "matcher": "Write|Edit|MultiEdit", - "hooks": [ - "type": "command", - "~/.claude/hooks/post_tool_uv_pytest.sh" - ] - } - - ] - } + "alwaysThinkingEnabled": false } From 4240fe6a8fd6debc343b6430312ea5cc3eabc3ef Mon Sep 17 00:00:00 2001 From: Daniel Bauer Date: Tue, 2 Dec 2025 11:43:59 +0100 Subject: [PATCH 4/4] add git alias --- dot_aliases | 3 +++ dot_claude/settings.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dot_aliases b/dot_aliases index 0907b50..c272ffc 100644 --- a/dot_aliases +++ b/dot_aliases @@ -35,3 +35,6 @@ alias clip='xsel --clipboard' # keepass alias kp=keepassxc-cli + +# git +alias gcom="git commit -m" diff --git a/dot_claude/settings.json b/dot_claude/settings.json index a90705a..e951021 100644 --- a/dot_claude/settings.json +++ b/dot_claude/settings.json @@ -10,5 +10,5 @@ "enabledPlugins": { "code-review@claude-code-marketplace": true }, - "alwaysThinkingEnabled": false + "alwaysThinkingEnabled": true }