-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathzed_settings.json
More file actions
96 lines (96 loc) · 2.05 KB
/
zed_settings.json
File metadata and controls
96 lines (96 loc) · 2.05 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
{
"vim_mode": true,
"ui_font_size": 13,
"buffer_font_size": 13,
"use_autoclose": false,
"wrap_guides": [80],
"theme": "Gruvbox Dark Hard",
"scrollbar": {
"show": "never"
},
"toolbar": {
"breadcrumbs": false,
"quick_actions": false
},
"ui_font_family": "BerkeleyMono Nerd Font Mono",
"buffer_font_family": "BerkeleyMono Nerd Font Mono",
"buffer_line_height": {
"custom": 1.25
},
"terminal": {
"dock": "bottom",
"font_size": 13,
"font_family": "BerkeleyMono Nerd Font Mono",
"line_height": {
"custom": 1.25
},
"env": {
"GIT_EDITOR": "zed --wait"
}
},
"features": {
"edit_prediction_provider": "zed"
},
"indent_guides": { "enabled": false },
"inlay_hints": {
"enabled": true
},
"agent": {
"default_model": {
"provider": "zed.dev",
"model": "claude-3-5-sonnet-latest"
}
},
"soft_wrap": "none",
"cursor_blink": false,
"current_line_highlight": "none",
"preview_tabs": {
"enabled": false,
"enable_preview_from_code_navigation": false
},
"lsp": {
"gopls": {
"initialization_options": {
"usePlaceholders": true,
"completeUnimported": false,
"experimentalPostfixCompletions": true,
"hints": {
"assignVariableTypes": false,
"compositeLiteralFields": false,
"compositeLiteralTypes": false,
"constantValues": true,
"functionTypeParameters": true,
"parameterNames": true,
"rangeVariableTypes": true
}
}
}
},
"languages": {
"Markdown": {
"completions": {
"words": "disabled"
},
"show_edit_predictions": false,
"preferred_line_length": 80,
"format_on_save": "off"
},
"SQL": {
"formatter": "prettier"
},
"JSON": {
"prettier": {
"allowed": true,
"parser": "json"
}
},
"JavaScript": {
"code_actions_on_format": {
"source.fixAll.eslint": true
}
},
"Rust": {
"use_on_type_format": false
}
}
}