-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsettings.json
38 lines (38 loc) · 992 Bytes
/
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
{
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Monokai",
"workbench.activityBar.visible": false,
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 12,
"editor.tabSize": 2,
"editor.multiCursorModifier": "ctrlCmd",
"editor.minimap.enabled": false,
"editor.hideCursorInOverviewRuler": true,
"editor.formatOnPaste": true,
"explorer.openEditors.visible": 0,
"files.insertFinalNewline": true,
"html.autoClosingTags": false,
"files.exclude": {
"**/node_modules/": true,
"**/.vscode/": true,
},
"material-icon-theme.folders.theme": "none",
"todohighlight.isEnable": true,
"todohighlight.keywords": [
{
"text": "TODO:",
"color": "black",
"backgroundColor": "yellow",
"overviewRulerColor": "yellow"
},
{
"text": "FIXME:",
"color": "white",
"backgroundColor": "red",
"overviewRulerColor": "red"
}
],
"todohighlight.exclude": [
"**/public/"
]
}