-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode.json
47 lines (46 loc) · 1.1 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"workbench.tree.indent": 20,
"git.confirmSync": false,
"workbench.startupEditor": "none",
"workbench.colorTheme": "Default Light Modern",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"[html]": {
"editor.rulers": [120],
"editor.tabSize": 2,
"editor.wordWrap": "on"
},
"[yaml]": {
"editor.tabSize": 2
},
"[markdown]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"other": "on",
"comments": "off",
"strings": "off"
},
"editor.autoClosingBrackets": "never"
},
"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
"[java]": {
"editor.rulers": [120]
},
"[javascript]": {
"editor.tabSize": 2
},
"[css]":{
"editor.suggest.insertMode": "replace",
"editor.tabSize": 2
}
}