Last active
June 10, 2016 06:32
-
-
Save vstoykov/f818347616d608d66d123b12e4bd2df3 to your computer and use it in GitHub Desktop.
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 configuration -------- | |
// Controls the font family. | |
"editor.fontFamily": "Ubuntu Mono", | |
// Controls the font size. | |
"editor.fontSize": 14, | |
//-------- Python Configuration -------- | |
// Path to Python, you can use a custom version of Python by modifying this setting to include the full path. | |
"python.pythonPath": "python3", | |
// Whether to lint Python files using pylint. | |
"python.linting.pylintEnabled": false, | |
// Whether to lint Python files using flake8 | |
"python.linting.flake8Enabled": true, | |
//-------- Files configuration -------- | |
// Configure glob patterns for excluding files and folders. | |
"files.exclude": { | |
"**/.git": true, | |
"**/.DS_Store": true, | |
"**/.sass-cache": true, | |
"**/.tox": true, | |
"**/.idea": true, | |
"**/.vagrant": true, | |
"**/__pycache__": true, | |
"**/*.pyc": true, | |
"**/*.pyo": true | |
}, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/node_modules/**": true, | |
"**/.tox/**": true, | |
"**/.sass-cache": true | |
}, | |
//-------- Guides Configurations -------- | |
// Show start-of-line indentation guides. | |
"guides.indent.showFirstIndentGuides": false, | |
// Normal indentation guides rendering color. | |
"guides.normal.color": "rgba(60, 60, 60, 0.2)", | |
// Normal indentation guides rendering style. | |
"guides.normal.style": "dotted", | |
// Active indentation guides rendering width. | |
"guides.active.width": 1, | |
// Active indentation guides rendering style. | |
"guides.active.style": "dotted", | |
// Enable stack indentation guides in addition to normal indentation guides. | |
"guides.stack.enabled": false, | |
// Stack indentation guides rendering style. | |
"guides.stack.style": "dotted", | |
//-------- Telemetry configuration -------- | |
// Enable usage data and errors to be sent to Microsoft. | |
"telemetry.enableTelemetry": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment