Skip to content

Instantly share code, notes, and snippets.

@gmemstr
Created December 13, 2016 00:15
Show Gist options
  • Save gmemstr/119e46048ec406b1acd940acd5756483 to your computer and use it in GitHub Desktop.
Save gmemstr/119e46048ec406b1acd940acd5756483 to your computer and use it in GitHub Desktop.
Personal vsCode settings file.
// Place your settings in this file to overwrite the default settings
{
// Editor
"editor.fontFamily": "'Monaco'",
"editor.fontSize": 12.5,
"editor.roundedSelection": false,
"editor.formatOnType": true,
"editor.formatOnSave": true,
"editor.cursorStyle": "underline",
"editor.folding": false,
"editor.trimAutoWhitespace": false,
"workbench.statusBar.visible": false,
// Files
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/__pycache__": true
},
"extensions.autoUpdate": true,
"telemetry.enableTelemetry": false,
// Python
"python.linting.pylintEnabled": false,
"python.linting.pep8Enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment