Created
December 13, 2016 00:15
-
-
Save gmemstr/119e46048ec406b1acd940acd5756483 to your computer and use it in GitHub Desktop.
Personal vsCode settings file.
This file contains hidden or 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
// 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