-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode_settings.json
43 lines (43 loc) · 1.12 KB
/
vscode_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
{
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["leader", "q"],
"commands": [
":q",
]
},
{
"before": ["leader", "w"],
"commands": [
"workbench.action.files.save"
]
}
],
"vim.useSystemClipboard": true,
"editor.lineNumbers": "relative",
"editor.rulers": [80, 100, 120],
"git.allowForcePush": true,
"files.exclude": {
"**/.egg-info": true,
"**/.ipython": true,
"**/*.pyc": true,
"**/**.swp": true,
"**/env": true,
"**/env[2-3]": true
},
"window.zoomLevel": 0,
"rewrap.wrappingColumn": 80,
"rewrap.autoWrap.enabled": true,
"editor.renderFinalNewline": false,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.renderWhitespace": "boundary",
"files.trimTrailingWhitespace": true,
"python.showStartPage": false,
"workbench.editorAssociations": [
{
"viewType": "jupyter.notebook.ipynb",
"filenamePattern": "*.ipynb"
}
]
}