-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
125 lines (124 loc) · 2.71 KB
/
settings.json
File metadata and controls
125 lines (124 loc) · 2.71 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
// 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)
{
"file_finder": {
"file_icons": true
},
"theme": "0x970 Theme",
"icon_theme": "Zed (Default)",
"redact_private_values": false,
"telemetry": {
"diagnostics": false,
"metrics": false
},
"minimum_contrast_for_highlights": 70.0,
"rounded_selection": true,
"selection_highlight": true,
"current_line_highlight": "line",
"unnecessary_code_fade": 0.5,
"hide_mouse": "never",
"git": {
"hunk_style": "unstaged_hollow",
"blame": {
"show_avatar": true
},
"inline_blame": {
"show_commit_summary": true,
"padding": 49,
"delay_ms": 200,
"enabled": true
},
"git_gutter": "tracked_files"
},
"zoomed_padding": true,
"use_system_window_tabs": false,
"bottom_dock_layout": "contained",
"preview_tabs": {
"enabled": true
},
"active_pane_modifiers": {
"border_size": 0.0,
"inactive_opacity": 0.0
},
"title_bar": {
"show_user_picture": true,
"show_branch_icon": true
},
"tabs": {
"file_icons": true,
"git_status": true
},
"tab_bar": {
"show_nav_history_buttons": false,
"show": true
},
"status_bar": {
"active_language_button": true
},
"project_panel": {
"hide_root": true,
"sticky_scroll": true,
"auto_fold_dirs": true,
"starts_open": true,
"auto_reveal_entries": true,
"indent_size": 10.0,
"git_status": true,
"folder_icons": true,
"file_icons": true,
"entry_spacing": "standard",
"default_width": 235.0,
"dock": "left",
"button": true
},
"cursor_shape": "block",
"agent_ui_font_size": 14.0,
"buffer_font_family": ".ZedMono",
"ui_font_family": ".ZedMono",
"terminal": {
"font_family": ".ZedMono"
},
"diagnostics": {
"inline": {
"enabled": true
}
},
"base_keymap": "JetBrains",
"inlay_hints": {
"edit_debounce_ms": 300,
"enabled": true
},
"search": {
"include_ignored": true,
"regex": true
},
"buffer_font_weight": 400.0,
"disable_ai": true,
"ui_font_size": 14.0,
"buffer_font_size": 14.0,
"autosave": "on_focus_change",
"lsp": {
"golangci-lint": {
"initialization_options": {
"command": [
"~/go/bin/golangci-lint",
"run",
"--output.json.path",
"stdout",
"--show-stats=false",
"--output.text.path="
]
}
}
},
"languages": {
"Go": {
"language_servers": ["gopls", "golangci-lint"]
}
}
}