Skip to content

Instantly share code, notes, and snippets.

@python012
Created September 18, 2018 06:10
Show Gist options
  • Save python012/2a6680154e9b718c326e6dc57db3535c to your computer and use it in GitHub Desktop.
Save python012/2a6680154e9b718c326e6dc57db3535c to your computer and use it in GitHub Desktop.
Custom VS code settings
{
"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,
}
@python012
Copy link
Author

python012 commented Sep 18, 2018

{
"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"]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment