Created
July 31, 2019 06:40
-
-
Save avsthiago/1d8e59d1d0726e1a48de696e1a665619 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"window.zoomLevel": 1, | |
"workbench.colorTheme": "Default Light+", | |
"python.jediEnabled": false, | |
"python.pythonPath": "python", | |
"python.terminal.launchArgs": [ | |
"-c", | |
"\"from IPython import start_ipython; start_ipython()\"", | |
], | |
"files.autoSave": "afterDelay", | |
"[python]": { | |
"editor.defaultFormatter": "ms-python.python" | |
}, | |
"python.formatting.provider": "black", | |
"git.autofetch": true, | |
"multiCommand.commands": [ | |
{ | |
"command": "multiCommand.runNestedLines", | |
"sequence": [ | |
"editor.action.clipboardCopyAction", | |
"workbench.action.terminal.focus", | |
"workbench.action.terminal.paste", | |
{ | |
"command": "workbench.action.terminal.sendSequence", | |
"args": { | |
"text": "\u000D\u000D" | |
} | |
}, | |
"workbench.action.focusActiveEditorGroup" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment