Skip to content

Instantly share code, notes, and snippets.

@augusticor
Created November 4, 2020 13:28
Show Gist options
  • Save augusticor/5f83b27ab95fe50121e3ed80b608176e to your computer and use it in GitHub Desktop.
Save augusticor/5f83b27ab95fe50121e3ed80b608176e to your computer and use it in GitHub Desktop.
My Visual Studio Code settings.json configuration file
{
"window.zoomLevel": 0,
"explorer.confirmDragAndDrop": false,
"editor.fontSize": 16,
"editor.formatOnSave": true,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[css]": {
"editor.defaultFormatter": "aeschli.vscode-css-formatter"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"workbench.iconTheme": "material-icon-theme",
"postcssSorting.config": {
"properties-order": "alphabetical"
},
"explorer.confirmDelete": false,
"files.insertFinalNewline": false,
"prettier.singleQuote": true,
"prettier.disableLanguages": [
"html",
"css"
],
"prettier.jsxSingleQuote": true,
"prettier.useTabs": true,
"prettier.printWidth": 160,
"explorer.compactFolders": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment