Created
December 22, 2017 05:24
-
-
Save codyeatworld/c5bd5c6ada9e83f154725a48a7be49a1 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
{ | |
"workbench.colorTheme": "One Dark Pro", | |
"files.autoSave": "onFocusChange", | |
"editor.fontSize": 14, | |
"editor.fontFamily": "Fira Code", | |
"editor.tabSize": 2, | |
"editor.fontLigatures": false, | |
"editor.renderWhitespace": "all", | |
"files.insertFinalNewline": true, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/tmp": true, | |
"**/bower_components": true | |
}, | |
"files.exclude": { | |
"*/**/**.pyc": true | |
}, | |
"editor.rulers": [ | |
80, | |
100 | |
], | |
"window.zoomLevel": 1, | |
"emmet.includeLanguages": { | |
"erb": "html" | |
}, | |
"explorer.confirmDragAndDrop": false, | |
"python.disablePromptForFeatures": [ | |
"pylint" | |
], | |
"explorer.confirmDelete": false, | |
"[python]": { | |
}, | |
"python.linting.enabled": false, | |
"python.linting.pylintEnabled": false, | |
"python.linting.lintOnTextChange": false, | |
"python.linting.lintOnSave": false, | |
"workbench.panel.location": "right", | |
"editor.minimap.enabled": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment