Skip to content

Instantly share code, notes, and snippets.

@jq-87
Last active May 6, 2019 14:02
Show Gist options
  • Save jq-87/10864ef8ecf14dfadc5d84756b0dc286 to your computer and use it in GitHub Desktop.
Save jq-87/10864ef8ecf14dfadc5d84756b0dc286 to your computer and use it in GitHub Desktop.
VScode prefs
{
"vscode_custom_css.imports": [],
"editor.fontFamily": "Monaco",
"editor.lineHeight": 24,
"editor.fontLigatures": true,
"explorer.decorations.badges": false,
"window.zoomLevel": 1,
"editor.fontSize": 14,
"editor.tabCompletion": true,
"editor.minimap.showSlider": "always",
"editor.wordWrap": "on",
"emmet.includeLanguages": {
"lang-cfml": "html",
"vue-html": "html",
"javascript": "html",
"php": "html"
},
"workbench.colorTheme": "Material Theme",
"files.exclude": {
"**/node_modules/**": true
},
"vetur.format.defaultFormatter": {
"css": "prettier",
"postcss": "prettier",
"scss": "prettier",
"less": "prettier",
"js": "prettier",
"ts": "prettier"
},
"vetur.format.defaultFormatterOptions": {
"prettier": {
"singleQuote": true,
"semi": false
}
},
"search.location": "panel",
"materialTheme.cache.workbench.settings": {},
"materialTheme.fixIconsRunning": false,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"prettier.singleQuote": true,
"prettier.jsxSingleQuote": true,
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"typescript.format.insertSpaceBeforeFunctionParenthesis": true,
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.quoteStyle": "single",
"prettier.semi": false,
"vetur.format.defaultFormatter.html": "none",
"javascript.validate.enable": false,
"editor.overviewRulerBorder": false,
"editor.formatOnSave": true,
"editor.find.seedSearchStringFromSelection": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment