Skip to content

Instantly share code, notes, and snippets.

@pronitdas
Created July 21, 2020 06:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pronitdas/3ceba7ee12c37a104ac29fe5fd585ed2 to your computer and use it in GitHub Desktop.
Save pronitdas/3ceba7ee12c37a104ac29fe5fd585ed2 to your computer and use it in GitHub Desktop.
{
"editor.tabSize": 2,
"editor.fontSize": 15,
"terminal.integrated.fontFamily": "Dank Mono, Monaco, 'Courier New', monospace",
"editor.fontFamily": "Dank Mono, Monaco, 'Courier New', monospace",
"editor.lineHeight": 26,
"editor.fontLigatures": true,
"explorer.decorations.badges": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.renderWhitespace": "none",
"editor.tabCompletion": "on",
"workbench.fontAliasing": "antialiased",
"workbench.colorTheme": "SynthWave '84",
"workbench.activityBar.visible": false,
"workbench.sideBar.location": "left",
"zenMode.fullScreen": false,
"zenMode.hideTabs": false,
"editor.minimap.enabled": false,
"emmet.includeLanguages": {
"vue-html": "html"
},
"explorer.confirmDelete": false,
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": 1,
"git.enableSmartCommit": true,
// "workbench.colorCustomizations": {
// "activityBar.background": "#000C1D",
// "activityBar.border": "#102a44",
// "sideBar.background": "#001122",
// "sideBar.border": "#102a44",
// "sideBar.foreground": "#8BADC1"
// },
"explorer.confirmDragAndDrop": false,
"files.associations": {
"*.php_cs": "php",
".nycrc": "json"
},
// Git VC
"git.autofetch": true,
"git.confirmSync": false,
// Material Theme
"materialTheme.accent": "Teal",
// Formatting Code:
"typescript.preferences.quoteStyle": "single",
"element-helper.quotes": "single",
"editor.quickSuggestions": {
"strings": true
},
"javascript.preferences.quoteStyle": "single",
"editor.formatOnSave": false,
"editor.formatOnPaste": false,
"editor.autoClosingQuotes": "never",
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"eslint.enable": true,
"eslint.run": "onSave",
"eslint.validate": [
{
"language": "vue",
},
{
"language": "html",
},
{
"language": "javascript",
}
],
"javascript.format.enable": false,
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"javascript.implicitProjectConfig.checkJs": false,
"element-helper.version": "2.5",
"php.suggest.basic": true,
"vscode_custom_css.policy": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment