-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzed.settings.json
More file actions
66 lines (66 loc) · 1.32 KB
/
zed.settings.json
File metadata and controls
66 lines (66 loc) · 1.32 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
{
"assistant": {
"default_model": {
"provider": "anthropic",
"model": "claude-3-5-sonnet-latest"
},
"version": "2"
},
"base_keymap": "SublimeText",
"ui_font_size": 12,
"buffer_font_size": 16,
"theme": {
"mode": "dark",
"light": "Base16 Windows High Contrast",
"dark": "Base16 Windows High Contrast"
},
"tab_size": 2,
"use_autoclose": false,
"relative_line_numbers": true,
"vertical_scroll_margin": 1,
"inlay_hints": {
"enabled": true,
// "show_background": false,
"edit_debounce_ms": 0,
"scroll_debounce_ms": 0
},
"inline_blame": {
"enabled": true,
"delay_ms": 0,
"show_commit_summary": true,
"min_column": 0
},
"features": {
// "inline_completion_provider": "supermaven"
"inline_completion_provider": "copilot"
},
"auto_update": false,
"terminal": {
"line_height": "standard",
"detect_venv": "off"
},
"lsp": {
"nil": {
"settings": {
"formatting": {
"command": ["nixfmt", "-s", "-v"]
}
}
}
},
"project_panel": {
"default_width": 180,
"dock": "right",
"file_icons": true,
"folder_icons": false,
"git_status": true,
"indent_size": 1,
"indent_guides": {
"show": "never"
}
},
"tabs": {
"file_icons": true,
"git_status": true
}
}