Created
September 18, 2018 06:10
-
-
Save python012/2a6680154e9b718c326e6dc57db3535c to your computer and use it in GitHub Desktop.
Custom VS code 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
{ | |
"explorer.confirmDelete": false, | |
"workbench.iconTheme": "vscode-great-icons", | |
"editor.minimap.enabled": false, | |
"terminal.integrated.rendererType": "dom", | |
"editor.renderWhitespace": "none", | |
"files.autoSave": "afterDelay", | |
"editor.wrappingIndent": "none", | |
"window.zoomLevel": 0, | |
"vsicons.dontShowNewVersionMessage": true, | |
"workbench.statusBar.feedback.visible": false, | |
"workbench.colorTheme": "Winter is Coming (Dark)", | |
"window.title": "${activeEditorMedium}", | |
"editor.tokenColorCustomizations": { | |
"[Winter is Coming (Dark)]": { | |
"strings": "#999999" | |
} | |
}, | |
"workbench.activityBar.visible": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
{
"python.pythonPath": "C:\Users\admin\.virtualenvs\iblog-3A2-_b3s\Scripts\python.exe",
"python.linting.pylintEnabled": false,
"python.linting.pep8Enabled": true,
"python.linting.enabled": true,
"python.linting.pep8Args": ["--ignore=E501"]
}