Skip to content

Commit 4cbb5b2

Browse files
committed
update configs
1 parent bd67577 commit 4cbb5b2

8 files changed

Lines changed: 116 additions & 18 deletions

File tree

.config/opencode/opencode.jsonc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"$schema": "https://opencode.ai/config.json",
3-
"theme": "rosepine",
43
"model": "anthropic/claude-opus-4-6",
54
"instructions": [
65
"CONTRIBUTING.md",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"last_played": {
3+
"task.complete": "sounds/PeonYesAttack3.wav",
4+
"input.required": "sounds/PeonWhat2.wav",
5+
"session.start": "sounds/PeonWhat1.wav",
6+
"task.error": "sounds/PeonAngry4.wav"
7+
},
8+
"session_packs": {}
9+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"active_pack": "peon",
3+
"volume": 0.5,
4+
"enabled": true,
5+
"categories": {
6+
"session.start": true,
7+
"session.end": true,
8+
"task.acknowledge": true,
9+
"task.complete": true,
10+
"task.error": true,
11+
"task.progress": true,
12+
"input.required": true,
13+
"resource.limit": true,
14+
"user.spam": true
15+
},
16+
"spam_threshold": 3,
17+
"spam_window_seconds": 10,
18+
"pack_rotation": [],
19+
"debounce_ms": 500
20+
}
10.8 KB
Loading
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/opt/homebrew/opt/peon-ping/libexec/adapters/opencode/peon-ping.ts

.config/opencode/tui.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"$schema": "https://opencode.ai/tui.json",
3+
"theme": "rosepine"
4+
}

.config/tmux/tmux.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ bind l select-pane -R
9393
bind-key -T copy-mode-vi v send-keys -X begin-selection
9494

9595
# Basic configuration
96-
set -g @powerkit_plugins "datetime,battery,weather,netspeed,nowplaying,git"
96+
set -g @powerkit_plugins "battery,weather,datetime,git"
9797
set -g @powerkit_separator_style "slantup"
9898
set -g @powerkit_edge_separator_style "slantup"
9999

.config/zed/settings.json

Lines changed: 81 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,41 @@
11
{
2+
"context_servers": {
3+
"fluent": {
4+
"enabled": true,
5+
"url": "https://chat.fluentui.dev/mcp/server",
6+
"headers": {}
7+
}
8+
},
9+
"ssh_connections": [
10+
{
11+
"host": "cs.vigilant-funicular-g45qgx56675rfv7v7.main",
12+
"args": [],
13+
"projects": [
14+
{
15+
"paths": ["/workspaces/client-web/"]
16+
}
17+
],
18+
"nickname": "OWA codespace"
19+
}
20+
],
21+
"multi_cursor_modifier": "cmd_or_ctrl",
22+
"terminal": {
23+
"cursor_shape": "block",
24+
"shell": {
25+
"with_arguments": {
26+
"program": "/bin/zsh",
27+
"args": ["-c", "tmux new-session -A -s \"$(basename \"$PWD\")\""]
28+
}
29+
}
30+
},
31+
"agent_servers": {
32+
"claude-acp": {
33+
"type": "registry"
34+
},
35+
"opencode": {
36+
"type": "registry"
37+
}
38+
},
239
"buffer_font_weight": 500.0,
340
"theme": "Rosé Pine",
441
"vim_mode": true,
@@ -8,56 +45,84 @@
845
"current_line_highlight": "line",
946
"ui_font_size": 16,
1047
"agent": {
48+
"default_profile": "write",
49+
"profiles": {
50+
"plan": {
51+
"name": "Plan",
52+
"tools": {},
53+
"enable_all_context_servers": false,
54+
"context_servers": {}
55+
}
56+
},
57+
"tool_permissions": {
58+
"tools": {
59+
"web_search": {
60+
"default": "allow"
61+
},
62+
"fetch": {
63+
"default": "confirm"
64+
},
65+
"copy_path": {
66+
"default": "allow"
67+
},
68+
"edit_file": {
69+
"default": "allow"
70+
},
71+
"terminal": {
72+
"default": "allow"
73+
}
74+
}
75+
},
1176
"default_model": {
1277
"provider": "copilot_chat",
13-
"model": "claude-sonnet-4.5",
78+
"model": "claude-opus-4.6"
1479
},
1580
"enabled": true,
1681
"button": true,
17-
"model_parameters": [],
82+
"model_parameters": []
1883
},
1984
"tab_bar": {
20-
"show": true,
85+
"show": true
2186
},
2287
"scrollbar": {
2388
"show": "never",
2489
"cursors": false,
2590
"git_diff": true,
2691
"search_results": true,
2792
"selected_symbol": true,
28-
"diagnostics": "all",
93+
"diagnostics": "all"
2994
},
3095
"preview_tabs": {
3196
"enabled": true,
32-
"enable_preview_from_file_finder": false,
97+
"enable_preview_from_file_finder": false
3398
},
3499
"centered_layout": {
35100
"left_padding": 0.1,
36-
"right_padding": 0.1,
101+
"right_padding": 0.1
37102
},
38103
"status_bar": {
39-
"experimental.show": true,
104+
"experimental.show": true
40105
},
41106
"relative_line_numbers": "enabled",
42107
"gutter": {
43-
"line_numbers": true,
108+
"line_numbers": true
44109
},
45110
"minimap": {
46-
"show": "never",
111+
"show": "never"
47112
},
48113
"toolbar": {
49114
"breadcrumbs": true,
50115
"quick_actions": false,
51-
"selections_menu": false,
116+
"selections_menu": false
52117
},
53118
"git": {
54119
"git_gutter": "tracked_files",
55120
"inline_blame": {
56-
"enabled": true,
57-
},
121+
"enabled": true
122+
}
58123
},
59-
"cursor_shape": "block",
60-
"cursor_blink": false,
124+
"cursor_shape": "bar",
125+
"cursor_blink": true,
61126
"buffer_font_family": "JetBrainsMono Nerd Font",
62127
"linked_edits": true,
63128
"show_edit_predictions": true,
@@ -67,6 +132,6 @@
67132
"icon_theme": {
68133
"mode": "dark",
69134
"light": "Zed (Default)",
70-
"dark": "Material Icon Theme",
71-
},
135+
"dark": "Material Icon Theme"
136+
}
72137
}

0 commit comments

Comments
 (0)