-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.json
More file actions
127 lines (127 loc) · 2.88 KB
/
Copy pathsettings.json
File metadata and controls
127 lines (127 loc) · 2.88 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// 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 the `open default settings` command
// from the command palette or from `Zed` application menu.
{
"icon_theme": "Material Icon Theme",
"assistant": {
"default_model": {
"provider": "zed.dev",
"model": "claude-3-7-sonnet-latest"
},
"version": "2"
},
"theme": "Zedokai Darker (Filter Spectrum)",
"features": { "edit_prediction_provider": "zed" },
"language_models": {
"openai": {
"version": "1",
"api_url": "https://api.deepseek.com/v1",
"available_models": [
{
"name": "deepseek-chat",
"display_name": "deepseek",
"max_tokens": 128000
}
]
}
},
// "assistant": {
// "default_model": {
// "provider": "copilot_chat",
// "model": "gpt-4o"
// },
// "version": "2"
// },
// "assistant": {
// "version": "2",
// "default_model": {
// "provider": "copilot_chat",
// "model": "gpt-4o"
// }
// },
// "language_models": {
// "openai": {
// "version": "1",
// "api_url": "https://openai.api2d.net/v1"
// }
// },
"always_treat_brackets_as_autoclosed": true,
"soft_wrap": "editor_width",
"outline_panel": {
"button": true,
"default_width": 240,
"dock": "right",
"file_icons": true,
"folder_icons": true,
"git_status": true,
"indent_size": 20,
"auto_reveal_entries": true,
"auto_fold_dirs": true
},
"auto_signature_help": false,
"vim_mode": true,
"ui_font_size": 15,
"diagnostics": {
"include_warnings": false,
"inline": {
"enabled": true,
"update_debounce_ms": 150,
"padding": 4,
"min_column": 0,
"max_severity": null
}
},
"buffer_font_size": 14,
"buffer_font_family": "SauceCodePro Nerd Font Mono",
"cursor_blink": true,
"relative_line_numbers": true,
"scrollbar": {
"show": "never"
},
"vertical_scroll_margin": 0,
"line_numbers": false,
"indent_guides": {
"line_width": 1,
"enabled": true,
"highlight_active_indent": true,
"active_line_width": 3,
"coloring": "indent_aware",
"background_coloring": "indent_aware"
},
"tab_bar": {
"show": true,
"size": "small",
"position": "top"
},
"tabs": {
"git_status": true,
"file_icons": true
},
"toolbar": {
"breadcrumbs": true,
"quick_actions": true
},
"inlay_hints": {
"enabled": true,
"show_type_hints": false,
"show_parameter_hints": true,
"show_other_hints": true,
"edit_debounce_ms": 700,
"scroll_debounce_ms": 50
},
"languages": {
"Python": {
"format_on_save": {
"external": {
"command": "black",
"arguments": ["-"]
}
}
}
}
}