Skip to content

Instantly share code, notes, and snippets.

@mocon
Created October 4, 2019 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mocon/be62b9566cfbedda331a0a117a0c7924 to your computer and use it in GitHub Desktop.
Save mocon/be62b9566cfbedda331a0a117a0c7924 to your computer and use it in GitHub Desktop.
VS Code user settings file, located at `~/Library/Application Support/Code/User/settings.json`
{
"window.zoomLevel": -1,
"workbench.iconTheme": "vscode-icons",
"vsicons.dontShowNewVersionMessage": true,
"editor.tabSize": 2,
"editor.fontFamily": "InputMono-Regular",
"editor.wordWrap": "on",
"editor.fontSize": 15,
"editor.occurrencesHighlight": false,
"editor.selectionHighlight": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"prettier.endOfLine": "lf",
"prettier.semi": false,
"eslint.autoFixOnSave": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"workbench.tree.renderIndentGuides": "always",
"explorer.autoReveal": false,
"prettier.jsxSingleQuote": true,
"editor.cursorBlinking": "smooth",
"prettier.singleQuote": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment