-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode.json
31 lines (31 loc) · 896 Bytes
/
vscode.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
{
// Telemetry
"telemetry.telemetryLevel": "off",
// Search
"search.searchOnType": false,
// Window
"window.titleBarStyle": "custom",
"window.restoreWindows": "none",
"window.commandCenter": false
// Workbench
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.empty.hint": "hidden",
// Terminal
"terminal.integrated.persistentSessionReviveProcess": "never",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.lineHeight": 1.0,
"terminal.integrated.cursorBlinking": true,
// Editor
"editor.fontWeight": "bold",
"editor.minimap.enabled": false,
"editor.renderWhitespace": "all",
"editor.suggestSelection": "first",
"editor.rulers": [
100
],
"editor.tokenColorCustomizations": {
"comments": "#808080"
},
// Files
"files.insertFinalNewline": true
}