-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode_settings.json
39 lines (39 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
{
"editor.minimap.enabled": false,
"editor.renderLineHighlight": "none",
"workbench.colorTheme": "Tomorrow Night Eighties Operator Mono",
"[python]": {
"editor.defaultFormatter": "ms-python.python",
"editor.rulers": [80],
},
"[c]": {
"editor.rulers": [100],
},
"editor.renderIndentGuides": false,
"python.dataScience.sendSelectionToInteractiveWindow": true,
"editor.tabCompletion": "on",
"workbench.colorCustomizations": {
"editor.selectionBackground": "#135564",
"editor.selectionHighlightBackground": "#135564"
},
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false,
"<C-c>": false,
"<C-b>": false,
},
"vim.insertModeKeyBindingsNonRecursive": [
{
"before": [";", ";"],
"after": ["<ESC>"]
},
],
"sync.gist": "vscode_settings_isaac",
"sync.autoUpload": true,
"terminal.integrated.windowsEnableConpty": false,
"latex-workshop.view.pdf.viewer": "tab",
"window.zoomLevel": 0,
"workbench.colorCustomizations": {
"statusBar.background": "#475672",
}
}