-
Notifications
You must be signed in to change notification settings - Fork 15
/
this.code-workspace
38 lines (35 loc) · 959 Bytes
/
this.code-workspace
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
{
"folders": [
{
"path": "."
}
],
"settings": {
// appereance
"editor.fontSize": 16,
"editor.minimap.enabled": false,
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.accessibilitySupport": "off",
"terminal.integrated.fontSize": 16,
"workbench.statusBar.visible": false,
"workbench.colorTheme": "Omni",
"workbench.iconTheme": "material-icon-theme",
"workbench.activityBar.visible": false,
"window.zoomLevel": 2,
// formatter
"vscode.liveHtmlPreviewerV2.disableWebViewStyling": true,
"prettier.tabWidth": 2,
"editor.tabSize": 2,
"git.enabled": false,
// auto import
"tabnine.experimentalAutoImports": true,
"javascript.suggest.autoImports": true,
// formatter
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
}