Skip to content

Instantly share code, notes, and snippets.

@helderberto
Last active August 28, 2018 15:48
Show Gist options
  • Save helderberto/8681bc1ebd3edd47decb29682a01a22d to your computer and use it in GitHub Desktop.
Save helderberto/8681bc1ebd3edd47decb29682a01a22d to your computer and use it in GitHub Desktop.
VS Code - User Settings
// Place your settings in this file to overwrite the default settings
{
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.insertSpaces": true,
"editor.fontSize": 12,
"workbench.welcome.enabled": false,
"editor.renderWhitespace": "all",
"diffEditor.ignoreTrimWhitespace": false,
"window.zoomLevel": 1,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.colorTheme": "Dracula",
"editor.wordWrap": "on",
"editor.wordWrapColumn": 80,
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": true,
"editor.minimap.enabled": false,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"explorer.confirmDragAndDrop": false,
"php.suggest.basic": false,
"files.associations": {
"*.php": ["php", "html"]
},
"files.eol": "\n",
"editor.renderIndentGuides": false,
"javascript.updateImportsOnFileMove.enabled": "never",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment