-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
54 lines (48 loc) · 1.61 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
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 15,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.rulers": [80,100],
"editor.cursorStyle": "block",
"editor.tabCompletion": true,
"editor.formatOnType": true,
"editor.cursorBlinking": "smooth",
"editor.mouseWheelZoom": true,
"editor.trimAutoWhitespace": true,
"editor.renderWhitespace": "boundary",
"editor.wordWrap": "on",
"editor.wrappingIndent": "indent",
"editor.folding": true,
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": true,
"editor.dragAndDrop": true,
"editor.emptySelectionClipboard": true,
"editor.detectIndentation": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderIndentGuides": false,
"files.insertFinalNewline": true,
"files.eol": "\n",
"files.encoding": "utf8",
"files.trimTrailingWhitespace": true,
"files.autoGuessEncoding": true,
"files.defaultLanguage": "zh-cn",
"files.autoSave": "off",
"workbench.welcome.enabled": true,
"workbench.iconTheme": "vscode-icons",
"[cpp]": {
"editor.quickSuggestions": false
},
"[c]": {
"editor.quickSuggestions": false
},
"window.openFoldersInNewWindow": "on",
"window.zoomLevel": 0,
"window.menuBarVisibility": "default",
"extensions.autoUpdate": true,
"python.linting.enabledWithoutWorkspace": false,
"python.formatting.provider": "autopep8",
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
"python.formatting.formatOnSave": true
}