Skip to content

Instantly share code, notes, and snippets.

@Alecto
Last active June 10, 2019 11:16
Show Gist options
  • Save Alecto/eb9dfc2da5f4ba41e1aa1ecaff3258d4 to your computer and use it in GitHub Desktop.
Save Alecto/eb9dfc2da5f4ba41e1aa1ecaff3258d4 to your computer and use it in GitHub Desktop.
VSCode settings.json
{
"workbench.colorTheme": "One Dark Pro",
"editor.minimap.maxColumn": 80,
"workbench.editor.showTabs": true,
"terminal.integrated.shell.windows": "C:\\Windows\\system32\\cmd.exe",
"terminal.integrated.shellArgs.windows": [
"/k C:\\PortableApps\\cmder\\vendor\\init.bat"
],
"workbench.startupEditor": "none",
"workbench.activityBar.visible": true,
"editor.wordWrap": "on",
"files.autoSave": "onWindowChange",
"emmet.triggerExpansionOnTab": true,
"emmet.syntaxProfiles": {
"html": {
"filters": "html, bem"
}
},
"emmet.preferences": {
"bem.elementSeparator": "__",
"bem.modifierSeparator": "--",
"bem.shortElementPrefix": "-",
"lorem.defaultLang": "en"
},
"git.enableSmartCommit": true,
"files.exclude": {
"**/.idea": true
},
"editor.tabSize": 2,
"editor.formatOnPaste": true,
"prettier.singleQuote": true,
"prettier.trailingComma": "es5",
"prettier.tslintIntegration": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"prettier.eslintIntegration": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment