Created
January 3, 2019 19:51
-
-
Save robhudson/5ea947164f87870772d1900d776ce866 to your computer and use it in GitHub Desktop.
vscode settings
This file contains 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
{ | |
"docker.showExplorer": false, | |
"editor.folding": false, | |
"editor.fontFamily": "Monaco, Consolas, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.formatOnPaste": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.renderControlCharacters": true, | |
"editor.renderIndentGuides": false, | |
"editor.renderLineHighlight": "all", | |
"editor.renderWhitespace": "boundary", | |
"editor.roundedSelection": true, | |
"editor.rulers": [79, 100], | |
"editor.snippetSuggestions": "top", | |
"explorer.openEditors.visible": 0, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
".vscode": true, | |
"**/__pycache__": true, | |
"**/**/*.pyc": true, | |
"**/.tox": true, | |
"**/.cache": true | |
}, | |
"files.insertFinalNewline": true, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/node_modules/**": true, | |
"**/.tox/**": true, | |
"**/.cache": true | |
}, | |
"python.linting.flake8Enabled": true, | |
"python.linting.pylintEnabled": false, | |
"python.unitTest.unittestEnabled": false, | |
"python.unitTest.pyTestEnabled": false, | |
"python.unitTest.nosetestsEnabled": false, | |
"python.workspaceSymbols.enabled": false, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/.tox": true, | |
"**/.cache": true | |
}, | |
"window.title": "${activeEditorMedium}${separator}${rootName}", | |
"workbench.activityBar.visible": true, | |
"workbench.sideBar.location": "left", | |
"workbench.statusBar.visible": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment