Last active
December 28, 2019 09:38
-
-
Save tweakimp/54423c6d7b813ddacd62aec5f5fbe1a3 to your computer and use it in GitHub Desktop.
vscode settings
This file contains 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
{ | |
"editor.cursorBlinking": "phase", | |
"editor.fontFamily": "Fira Code Retina, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 16, | |
"editor.minimap.enabled": false, | |
"editor.suggestSelection": "first", | |
"extensions.autoUpdate": false, | |
"files.exclude": { | |
"**/.pyc": true, | |
"**/__pycache__": true | |
}, | |
"git.autofetch": true, | |
"git.confirmSync": false, | |
"multiCommand.commands": [ | |
{ | |
"command": "multiCommand.run_file", | |
"sequence": [ | |
"workbench.action.terminal.kill", | |
"python.execInTerminal" | |
] | |
} | |
], | |
"python.formatting.blackArgs": [ | |
"--line-length", | |
"120" | |
], | |
"python.formatting.provider": "black", | |
"python.jediEnabled": false, | |
"python.linting.enabled": true, | |
"python.linting.pylintArgs": [ | |
"--enable=all" | |
], | |
"python.pythonPath": "C:\\Program Files\\Python37\\python.exe", | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.cursorStyle": "line", | |
"terminal.integrated.rendererType": "canvas", | |
"terminal.integrated.scrollback": 20000, | |
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe", | |
"vsicons.dontShowNewVersionMessage": true, | |
"window.zoomLevel": 0, | |
"workbench.colorCustomizations": {}, | |
"workbench.colorTheme": "Night Owl", | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.startupEditor": "newUntitledFile", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment