-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
75 lines (75 loc) · 2.02 KB
/
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
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
{
"workbench.colorTheme": "Palenight (Mild Contrast)",
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"editor.fontLigatures": true,
"editor.snippetSuggestions": "top",
"emmet.showAbbreviationSuggestions": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": false,
"workbench.iconTheme": "vscode-icons",
"code-runner.executorMap": {
"javascript": "node",
"python": "python",
"go": "go run",
"html": "\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\"",
"java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
},
"code-runner.clearPreviousOutput": true,
"editor.accessibilitySupport": "on",
"editor.tabSize": 2,
"editor.detectIndentation": true,
"editor.minimap.enabled": false,
"files.exclude": {
"**/.*": true
},
"editor.fontFamily": "Operator Mono",
"workbench.editor.showTabs": false,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"entity.name.type.class",
"keyword",
"constant",
"storage.modifier",
"storage.type.class"
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json"
],
"settings": {
"fontStyle": ""
}
}
]
},
"editor.fontWeight": "500",
"editor.fontSize": 13,
"editor.linkedEditing": true,
"tabnine.experimentalAutoImports": true,
"advancedNewFile.exclude": {
"node_modules": true,
"node_modules_electron": true,
"dev": true,
"dist": true
},
"advancedNewFile.showInformationMessages": true,
"advancedNewFile.convenienceOptions": [
"last",
"current",
"root"
]
}