Skip to content

Instantly share code, notes, and snippets.

@trungquy
Created July 29, 2018 23:51
Show Gist options
  • Save trungquy/80966c6d717e59805f1aeb9b104e95df to your computer and use it in GitHub Desktop.
Save trungquy/80966c6d717e59805f1aeb9b104e95df to your computer and use it in GitHub Desktop.
settings.json
{
"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