Last active
November 17, 2019 17:23
-
-
Save paltman/6d99cc0ffdb4cc28eb5226b52f7c8dd7 to your computer and use it in GitHub Desktop.
My VSCode settings for Django + Vue development
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
{ | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.editor.enablePreview": false, | |
"editor.renderWhitespace": "boundary", | |
"editor.renderLineHighlight": "all", | |
"files.insertFinalNewline": true, | |
"python.linting.pylintEnabled": false, | |
"python.linting.flake8Enabled": true, | |
"editor.selectionHighlight": false, | |
"editor.scrollBeyondLastLine": false, | |
"window.zoomLevel": 0, | |
"editor.minimap.enabled": false, | |
"editor.rulers": [ | |
80 | |
], | |
"debug.allowBreakpointsEverywhere": true, | |
"debug.inlineValues": true, | |
"[javascript]": { | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true | |
}, | |
"[vue]": { | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true | |
}, | |
"[json]": { | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true | |
}, | |
"editor.tabSize": 4, | |
"editor.detectIndentation": false, | |
"gulp.autoDetect": "off", | |
"python.venvPath": "~/.pyenv", | |
"python.autoComplete.addBrackets": true, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"htmlcov/**": true, | |
"static/dist/**": true, | |
"static/_build/**": true, | |
".vscode/": true, | |
"node_modules/": true, | |
"package-lock.json": true, | |
"**/*.pyc": true, | |
"**/__pycache__": true, | |
"*.egg-info": true, | |
".tox": true | |
}, | |
"files.trimTrailingWhitespace": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.fontFamily": "Inconsolata, Monaco, 'Courier New', monospace", | |
"workbench.colorTheme": "Material Theme Darker High Contrast", | |
"editor.fontSize": 18, | |
"workbench.colorCustomizations": { | |
"activityBarBadge.background": "#FF7042", | |
"list.activeSelectionForeground": "#FF7042", | |
"list.inactiveSelectionForeground": "#FF7042", | |
"list.highlightForeground": "#FF7042", | |
"scrollbarSlider.activeBackground": "#FF704250", | |
"editorSuggestWidget.highlightForeground": "#FF7042", | |
"textLink.foreground": "#FF7042", | |
"progressBar.background": "#FF7042", | |
"pickerGroup.foreground": "#FF7042", | |
"tab.activeBorder": "#FF7042", | |
"notificationLink.foreground": "#FF7042", | |
"editorWidget.resizeBorder": "#FF7042", | |
"editorWidget.border": "#FF7042", | |
"settings.modifiedItemIndicator": "#FF7042", | |
"settings.modifiedItemForeground": "#FF7042", | |
"settings.headerForeground": "#FF7042", | |
"panelTitle.activeBorder": "#FF7042", | |
"breadcrumb.activeSelectionForeground": "#FF7042", | |
"menu.selectionForeground": "#FF7042", | |
"menubar.selectionForeground": "#FF7042" | |
}, | |
"explorer.confirmDelete": false, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"breadcrumbs.enabled": true, | |
"vetur.completion.tagCasing": "initial", | |
"vetur.format.scriptInitialIndent": true, | |
"vetur.format.styleInitialIndent": true, | |
"editor.formatOnType": false, | |
"javascript.preferences.quoteStyle": "single", | |
"editor.formatOnPaste": true, | |
"json.schemas": [ | |
{ | |
"fileMatch": [ | |
"cypress.json" | |
], | |
"url": "https://on.cypress.io/cypress.schema.json" | |
} | |
], | |
"diffEditor.ignoreTrimWhitespace": true, | |
"editor.tabCompletion": "onlySnippets", | |
} |
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
batisteo.vscode-django-0.19.0 | |
bibhasdn.django-html-1.3.0 | |
compulim.indent4to2-0.1.2 | |
dbaeumer.vscode-eslint-1.9.1 | |
editorconfig.editorconfig-0.14.2 | |
equinusocio.vsc-material-theme-30.0.0 | |
ericadamski.carbon-now-sh-1.2.0 | |
esbenp.prettier-vscode-3.6.0 | |
mechatroner.rainbow-csv-1.3.1 | |
ms-python.python-2019.10.44104 | |
octref.vetur-0.22.6 | |
pkief.material-icon-theme-3.9.1 | |
sdras.vue-vscode-snippets-1.8.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment