-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
139 lines (123 loc) · 4.35 KB
/
Copy pathsettings.json
File metadata and controls
139 lines (123 loc) · 4.35 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
// =============================
// Editor – Font & Appearance
// =============================
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 16,
"editor.fontLigatures": true,
"editor.lineHeight": 36,
"editor.cursorWidth": 2,
"editor.cursorBlinking": "expand",
"editor.cursorSmoothCaretAnimation": "on",
"editor.lineNumbers": "on",
"editor.glyphMargin": false,
"editor.minimap.enabled": false,
"editor.renderLineHighlight": "none",
"editor.renderWhitespace": "none",
"editor.matchBrackets": "near",
"editor.hideCursorInOverviewRuler": true,
// =============================
// Editor – Behavior & Navigation
// =============================
"editor.formatOnSave": true,
"editor.gotoLocation.multipleDeclarations": "goto",
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.gotoLocation.multipleImplementations": "goto",
"editor.gotoLocation.multipleReferences": "goto",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
"editor.bracketPairColorization.enabled": false,
"editor.colorDecorators": false,
"editor.guides.indentation": false,
// =============================
// Editor – Scrollbars
// =============================
"editor.scrollbar.horizontalScrollbarSize": 8,
"editor.scrollbar.verticalScrollbarSize": 8,
"editor.scrollbar.vertical": "hidden",
// =============================
// Debug Console
// =============================
"debug.console.fontFamily": "JetBrains Mono",
"debug.console.fontSize": 15,
"debug.console.lineHeight": 36,
"debug.toolBarLocation": "docked",
// =============================
// Diff Editor
// =============================
"diffEditor.ignoreTrimWhitespace": false,
"diffEditor.renderSideBySide": false,
// =============================
// Explorer
// =============================
"explorer.compactFolders": false,
"explorer.decorations.badges": false,
"explorer.openEditors.visible": 1,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
// =============================
// Git / SCM
// =============================
"git.enableSmartCommit": true,
"git.confirmSync": false,
"scm.diffDecorations": "none",
// =============================
// Terminal
// =============================
"terminal.integrated.fontSize": 15,
"terminal.integrated.lineHeight": 1.85,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.enableMultiLinePasteWarning": "always",
// =============================
// Markdown
// =============================
"markdown.preview.markEditorSelection": false,
// =============================
// Problems & Diagnostics
// =============================
"problems.decorations.enabled": false,
// =============================
// Workbench – Theme & UI
// =============================
"workbench.colorTheme": "Vesper",
"workbench.preferredDarkColorTheme": "Vesper",
"workbench.preferredLightColorTheme": "Vesper",
"workbench.iconTheme": "material-icon-theme",
"workbench.productIconTheme": "material-product-icons",
"workbench.statusBar.visible": false,
"workbench.activityBar.location": "hidden",
"workbench.startupEditor": "none",
"workbench.tips.enabled": false,
"workbench.layoutControl.type": "toggles",
"workbench.panel.showLabels": false,
// =============================
// Workbench – Editor Management
// =============================
"workbench.editor.enablePreview": false,
"workbench.editor.revealIfOpen": true,
"workbench.editor.showTabs": "single",
// =============================
// Workbench – Lists & Trees
// =============================
"workbench.list.horizontalScrolling": true,
"workbench.tree.indent": 16,
"workbench.tree.renderIndentGuides": "none",
// =============================
// Window
// =============================
"window.menuBarVisibility": "compact",
// =============================
// Files
// =============================
"files.autoSave": "afterDelay",
// =============================
// Code Runner
// =============================
"code-runner.runInTerminal": true,
"code-runner.clearPreviousOutput": true,
"code-runner.saveFileBeforeRun": true,
"code-runner.saveAllFilesBeforeRun": true,
// =============================
// Security
// =============================
"security.workspace.trust.untrustedFiles": "open"
}