-
Notifications
You must be signed in to change notification settings - Fork 0
/
zed_settings.json
62 lines (62 loc) · 1.34 KB
/
zed_settings.json
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
{
"show_copilot_suggestions": false,
"languages": {
"Plain Text": {
"show_copilot_suggestions": false
}
},
"assistant": {
"dock": "right"
},
"project_panel": {
"dock": "left"
},
//"soft_wrap": "preferred_line_length",
"vim_mode": true,
"cursor_blink": false,
"scrollbar": {
"show": "never"
},
"base_keymap": "VSCode",
"theme": "Gruvbox Dark Hard",
"ui_font_size": 16,
"buffer_font_size": 13,
"buffer_line_height": {
"custom": 1.25
},
"terminal": {
"dock": "bottom",
"blinking": "on",
"font_size": 13,
"line_height": {
"custom": 1.25
}
},
"inlay_hints": {
"enabled": false
},
"experimental.theme_overrides": {
// "editor.background": "#1D2021",
// "editor.gutter.background": "#1D2021",
// "terminal.background": "#1D2021",
// "toolbar.background": "#1D2021",
// "panel.background": "#1D2021",
// "tab.active_background": "#1D2021"
},
"lsp": {
"gopls": {
"initialization_options": {
"usePlaceholders": true,
"hints": {
"assignVariableTypes": true,
"compositeLiteralFields": true,
"compositeLiteralTypes": true,
"constantValues": true,
"functionTypeParameters": true,
"parameterNames": true,
"rangeVariableTypes": true
}
}
}
}
}