Skip to content

Instantly share code, notes, and snippets.

@ProgramAlgo
Last active February 27, 2018 08:32
Show Gist options
  • Save ProgramAlgo/bf46fea0241751b28d181db2e4ac5848 to your computer and use it in GitHub Desktop.
Save ProgramAlgo/bf46fea0241751b28d181db2e4ac5848 to your computer and use it in GitHub Desktop.
VS Code setting file
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 14,
"editor.fontFamily": "Sarasa Mono Sc, Inziu Iosevka SC, Menlo, Monaco, 'Courier New', monospace",
"editor.tabSize": 2,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "all",
"extensions.ignoreRecommendations": false,
"files.autoSave": "onFocusChange",
"window.zoomLevel": 0,
"workbench.colorTheme": "Darcula",
"workbench.iconTheme": "vscode-icons",
"files.associations": {
"*.vue": "vue"
},
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html"
},
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "html",
"autoFix": true
},
{
"language": "vue",
"autoFix": true
}
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment