-
Notifications
You must be signed in to change notification settings - Fork 142
/
zed-config.json
66 lines (66 loc) · 1.61 KB
/
zed-config.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
63
64
65
66
// 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": {
"mode": "system",
"light": "Gruvbox Light",
"dark": "Gruvbox Dark Hard"
},
"features": {
"copilot": false
},
"cursor_blink": false,
"tab_size": 2,
"scrollbar": {
"show": "never"
},
"ui_font_size": 14,
"ui_font_family": "Berkeley Mono",
"buffer_font_size": 14,
"buffer_font_family": "Berkeley Mono",
"buffer_line_height": {
"custom": 1.25
},
// allow cursor to reach edges of screen
"vertical_scroll_margin": 0,
"vim_mode": true,
"vim": {
// "always": use system clipboard
// "never": don't use system clipboard
// "on_yank": use system clipboard for yank operations
"use_system_clipboard": "always",
// Lets `f` and `t` motions extend across multiple lines
"use_multiline_find": true
},
"lsp": {
"gopls": {
"initialization_options": {
"hints": {
"assignVariableTypes": true,
"compositeLiteralFields": true,
"compositeLiteralTypes": true,
"constantValues": true,
"functionTypeParameters": true,
"parameterNames": true,
"rangeVariableTypes": true
}
}
}
},
"terminal": {
"font_size": 14,
"font_family": "Berkeley Mono",
"line_height": {
"custom": 1.25
}
},
"git": {
"git_gutter": "tracked_files"
}
}