Skip to content

Instantly share code, notes, and snippets.

@sbstp
Created March 10, 2019 22:54
Show Gist options
  • Save sbstp/57cf321a8577ab07845a0a7c50211e31 to your computer and use it in GitHub Desktop.
Save sbstp/57cf321a8577ab07845a0a7c50211e31 to your computer and use it in GitHub Desktop.
{
//
// Telemetry & privacy
//
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"typescript.surveys.enabled": false,
"workbench.enableExperiments": false,
"workbench.settings.enableNaturalLanguageSearch": false,
"update.enableWindowsBackgroundUpdates": false,
//
// Editor
//
"editor.renderIndentGuides": true,
"editor.renderWhitespace": "boundary",
"editor.formatOnSave": true,
"editor.dragAndDrop": false,
"editor.minimap.enabled": false,
"editor.rulers": [
120
],
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.codeLens": false,
//
// Behavior & theme
//
"explorer.openEditors.visible": 0,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"workbench.editor.enablePreview": false,
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Gruvbox Dark (Hard)",
"workbench.settings.editor": "json",
"window.zoomLevel": 0,
"window.titleBarStyle": "custom",
"workbench.iconTheme": "vs-minimal",
"terminal.integrated.fontFamily": "Ubuntu Mono",
"terminal.integrated.fontSize": 16,
"breadcrumbs.enabled": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
//
// Python
//
"python.autoUpdateLanguageServer": false,
"python.jediEnabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": false,
"python.pythonPath": "/usr/bin/python3",
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"-l",
"120"
],
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
// "python.formatting.provider": "autopep8",
// "python.formatting.autopep8Args": [
// "--max-line-length=120"
// ],
"python.linting.flake8Args": [
"--max-line-length=120"
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment