Created
July 29, 2018 23:51
-
-
Save trungquy/80966c6d717e59805f1aeb9b104e95df to your computer and use it in GitHub Desktop.
settings.json
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
{ | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/*.pyc": true | |
}, | |
"telemetry.enableTelemetry": false, | |
"telemetry.enableCrashReporter": false, | |
"workbench.colorTheme": "Monokai", | |
"files.associations": { | |
"*.cu": "cpp" | |
}, | |
"python.formatting.provider": "yapf", | |
"window.zoomLevel": 0, | |
// "python.linting.pylintArgs": [ | |
// "--indent-string=\" \"" | |
// ], | |
"code-runner.enableAppInsights": false, | |
"workbench.statusBar.feedback.visible": false, | |
"editor.tabSize": 2, | |
"python.formatting.yapfArgs": [ | |
"--style", | |
"{based_on_style: chromium}" | |
], | |
"python.jediEnabled": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment