-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
113 lines (113 loc) · 2.31 KB
/
settings.json
File metadata and controls
113 lines (113 loc) · 2.31 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"theme": "Obsidian Prism",
"icon_theme": "Base Charmed Icons",
"ui_font_size": 15,
"buffer_font_size": 13,
"tab_size": 4,
"hard_tabs": false,
"cursor_blink": true,
"cursor_shape": "bar",
"show_completions_on_input": true,
"show_completion_documentation": true,
"minimap": {
"show": "always",
},
"title_bar": {
"show_branch_icon": true,
},
"scrollbar": {
"axes": {
"horizontal": false,
"vertical": false,
},
},
"experimental.theme_overrides": {
"players": [
{
"cursor": "#c8c8c8",
},
],
},
"edit_predictions": {
"mode": "eager",
},
"languages": {
"JSON": {
"tab_size": 2,
},
"JSONC": {
"tab_size": 2,
},
"YAML": {
"tab_size": 2,
},
"Make": {
"hard_tabs": true,
},
},
"agent": {
"default_width": 375,
"tool_permissions": {
"tools": {
"mcp:mcp-server-context7:resolve-library-id": {
"default": "allow",
},
"fetch": {
"default": "allow",
},
"mcp:mcp-server-context7:query-docs": {
"default": "allow",
},
},
},
"default_model": {
"enable_thinking": true,
"provider": "anthropic",
"model": "claude-opus-4-6-thinking-latest",
},
"thread_summary_model": {
"provider": "anthropic",
"model": "claude-sonnet-4-6-1m-context-latest",
},
},
"language_models": {
"anthropic": {
"api_url": "http://localhost:8317",
},
},
"notification_panel": {
"default_width": 375,
},
"project_panel": {
"entry_spacing": "comfortable",
"indent_size": 20,
"default_width": 350,
},
"collaboration_panel": {
"default_width": 350,
},
"outline_panel": {
"default_width": 350,
},
"git_panel": {
"default_width": 350.0,
"tree_view": false,
},
"terminal": {
"cursor_shape": "bar",
"blinking": "on",
"default_height": 320,
},
"telemetry": {
"diagnostics": false,
"metrics": false,
},
}