Skip to content

Instantly share code, notes, and snippets.

@samholmes
Last active February 25, 2020 19:25
Show Gist options
  • Save samholmes/d28654a2e9e3aa302529c26d60f4af5c to your computer and use it in GitHub Desktop.
Save samholmes/d28654a2e9e3aa302529c26d60f4af5c to your computer and use it in GitHub Desktop.
VS Code User Settings
// Place your settings in this file to overwrite the default settings
{
"terminal.integrated.shellArgs.osx": [
"-l"
],
"workbench.iconTheme": "eq-material-theme-icons",
"workbench.colorTheme": "Material Theme High Contrast",
"editor.minimap.enabled": true,
"editor.rulers": [
75,
80
],
"editor.multiCursorModifier": "ctrlCmd",
"explorer.confirmDelete": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"breadcrumbs.enabled": true,
"window.zoomLevel": 0,
"workbench.editor.highlightModifiedTabs": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"editor.formatOnSave": true,
"prettier.useTabs": true,
"prettier.trailingComma": "es5",
"prettier.requireConfig": true,
"editor.renderWhitespace": "boundary",
"prettier.singleQuote": true,
"editor.insertSpaces": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment