-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
96 lines (96 loc) · 2.78 KB
/
settings.json
File metadata and controls
96 lines (96 loc) · 2.78 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
{
"editor.fontLigatures": true,
"editor.fontFamily": "Fira Code, Consolas, 'Courier New', monospace, 'Segoe UI Emoji'",
"editor.fontSize": 13,
"editor.tabSize": 2,
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.exclude": {
"node_modules/": true,
"logs/": true,
"dist/": false
},
"terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\bash.exe",
"extensions.showRecommendationsOnlyOnDemand": true,
"explorer.openEditors.visible": 999,
"git.enableSmartCommit": true,
"sync.gist": "23da2eed1981e4c0154078e38580aab3",
"sync.host": "",
"sync.pathPrefix": "",
"sync.quietSync": false,
"sync.askGistName": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.lastUpload": "2018-07-08T17:16:18.394Z",
"sync.lastDownload": "",
"sync.forceDownload": false,
"terminal.integrated.fontSize": 13,
"window.menuBarVisibility": "toggle",
"window.zoomLevel": 0,
"workbench.colorTheme": "Visual Studio Dark",
//"workbench.iconTheme": "material-icon-theme",
"explorer.autoReveal": false,
"window.smoothScrollingWorkaround": true,
"window.titleBarStyle": "native",
"breadcrumbs.enabled": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"terminal.integrated.rendererType": "experimentalWebgl",
"debug.node.showUseWslIsDeprecatedWarning": false,
"typescript.updateImportsOnFileMove.enabled": "never",
"typescript.suggest.autoImports": false,
"javascript.suggest.autoImports": false,
"todohighlight.keywords": [
{
"text": "TODO:",
"color": "#fff",
"backgroundColor": "#ffbd2a",
"overviewRulerColor": "rgba(255,189,42,0.8)",
"isWholeLine": false
},
{
"text": "!TODO",
"color": "#fff",
"backgroundColor": "#ffbd2a",
"overviewRulerColor": "rgba(255,189,42,0.8)",
"isWholeLine": true
},
{
"text": "FIXME:",
"color": "#fff",
"backgroundColor": "#f06292",
"overviewRulerColor": "rgba(255,189,42,0.8)",
"isWholeLine": false
},
{
"text": "!FIXME",
"color": "#fff",
"backgroundColor": "#f06292",
"overviewRulerColor": "rgba(255,189,42,0.8)",
"isWholeLine": true
},
{
"text": "DOCS:",
"color": "#fff",
"backgroundColor": "#2196f3",
"overviewRulerColor": "#ffeb3b",
"isWholeLine": false
},
{
"text": "!DOCS",
"color": "#fff",
"backgroundColor": "#2196f3",
"overviewRulerColor": "#ffeb3b",
"isWholeLine": true
}
],
"todohighlight.defaultStyle": {
"isWholeLine": false
},
"remote.SSH.remotePlatform": {
"beta.zingword.com": "linux"
},
"diffEditor.ignoreTrimWhitespace": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
}