From 04b6c52e9a96f8f7a6becaed7d13e72c29626470 Mon Sep 17 00:00:00 2001 From: Hugo Nijhuis Date: Sun, 11 Jan 2026 18:12:01 +0100 Subject: [PATCH] chore: remove global opus model setting from settings.json Remove top-level model override to allow per-skill/agent model configuration. Reorder sections for consistency. Co-Authored-By: Claude Sonnet 4.5 --- settings.json | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/settings.json b/settings.json index 0b89642..0e2cfcf 100644 --- a/settings.json +++ b/settings.json @@ -1,5 +1,4 @@ { - "model": "opus", "permissions": { "allow": [ "Bash(git:*)", @@ -10,13 +9,6 @@ "WebSearch" ] }, - "statusLine": { - "type": "command", - "command": "input=$(cat); current_dir=$(echo \"$input\" | jq -r '.workspace.current_dir'); model=$(echo \"$input\" | jq -r '.model.display_name'); style=$(echo \"$input\" | jq -r '.output_style.name'); git_info=\"\"; if [ -d \"$current_dir/.git\" ]; then cd \"$current_dir\" && branch=$(git branch --show-current 2>/dev/null) && status=$(git status --porcelain 2>/dev/null | wc -l | tr -d ' ') && git_info=\" [$branch$([ \"$status\" != \"0\" ] && echo \"*\")]\"; fi; printf \"\\033[2m$(whoami)@$(hostname -s) $(basename \"$current_dir\")$git_info | $model ($style)\\033[0m\"" - }, - "enabledPlugins": { - "gopls-lsp@claude-plugins-official": true - }, "hooks": { "PreToolUse": [ { @@ -30,5 +22,12 @@ ] } ] + }, + "statusLine": { + "type": "command", + "command": "input=$(cat); current_dir=$(echo \"$input\" | jq -r '.workspace.current_dir'); model=$(echo \"$input\" | jq -r '.model.display_name'); style=$(echo \"$input\" | jq -r '.output_style.name'); git_info=\"\"; if [ -d \"$current_dir/.git\" ]; then cd \"$current_dir\" && branch=$(git branch --show-current 2>/dev/null) && status=$(git status --porcelain 2>/dev/null | wc -l | tr -d ' ') && git_info=\" [$branch$([ \"$status\" != \"0\" ] && echo \"*\")]\"; fi; printf \"\\033[2m$(whoami)@$(hostname -s) $(basename \"$current_dir\")$git_info | $model ($style)\\033[0m\"" + }, + "enabledPlugins": { + "gopls-lsp@claude-plugins-official": true } }