Skip to content

Instantly share code, notes, and snippets.

@baadaa
Last active September 4, 2020 14:58
Show Gist options
  • Save baadaa/960259c34cb6e683a24acd23cbee7f17 to your computer and use it in GitHub Desktop.
Save baadaa/960259c34cb6e683a24acd23cbee7f17 to your computer and use it in GitHub Desktop.
VS Code user settings dump from work
{
"files.associations": {
"*.conf": "json",
"*.block": "html",
"*.region": "html"
},
"editor.fontFamily": "Fira Code",
"editor.fontSize": 15,
"editor.lineHeight": 20,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.minimap.enabled": false,
"editor.colorDecorators": false,
"editor.insertSpaces": true,
"editor.cursorWidth": 10,
"editor.cursorBlinking": "solid",
"editor.detectIndentation": false,
"editor.renderWhitespace": "all",
"html.autoClosingTags": false,
"workbench.colorTheme": "Night Owl",
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.fontSize": 15,
"window.zoomLevel": 0,
"liveServer.settings.donotShowInfoMsg": true,
"todohighlight.keywords": ["NOTE:"],
"breadcrumbs.enabled": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"beautify.language": {
"html": ["html", "php", "erb"],
"css": [],
"js": []
},
"prettier.disableLanguages": ["js", "javascript", "javascriptreact"],
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false
},
"[javascriptreact]": {
"editor.formatOnSave": false
},
"editor.fontLigatures": true,
"editor.fontWeight": "400",
"terminal.integrated.fontWeightBold": "800",
"workbench.fontAliasing": "antialiased",
"debug.console.fontFamily": "Fira Code",
"debug.console.fontSize": 15,
"terminal.external.osxExec": "iterm.app",
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"beautify.config": ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment