Skip to content

Instantly share code, notes, and snippets.

@echr
Created February 24, 2020 06:07
Show Gist options
  • Save echr/3da1c44fdc14c82d65f2fbdcea66fdd1 to your computer and use it in GitHub Desktop.
Save echr/3da1c44fdc14c82d65f2fbdcea66fdd1 to your computer and use it in GitHub Desktop.
VSCode Config
// Place your settings in this file to overwrite the default settings
{
"files.associations": {
"*.vue": "vue",
".php_cs": "php",
".php_cs.dist": "php",
"*.php": "php"
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"node_modules": true,
".idea": true,
".phpintel": true
},
"emmet.includeLanguages": {
"blade.php": "html",
"vue": "html"
},
"emmet.triggerExpansionOnTab": true,
"editor.emptySelectionClipboard": false,
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?",
"editor.fontSize": 14,
"editor.lineHeight": 35,
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"editor.formatOnSave": false,
"editor.minimap.enabled": false,
"editor.tabCompletion": "on",
"editor.codeLens": false,
"editor.renderIndentGuides": true,
"editor.renderLineHighlight": "none",
"editor.matchBrackets": "always",
"editor.lineNumbers": "off",
// "editor.renderWhitespace": "all",
"editor.letterSpacing": 1.0,
"editor.fontFamily": "Operator Mono",
"editor.suggestFontSize": 14,
"editor.suggestLineHeight": 28,
"editor.quickSuggestions": {
"strings": true
},
"editor.parameterHints.enabled": false,
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
},
"vue-html"
],
"explorer.openEditors.visible": 0,
"explorer.decorations.badges": false,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"php.suggest.basic": false,
//"auto-close-tag.SublimeText3Mode": true,
//"intelephense.completionProvider.backslashPrefix": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
// Hide everything in /public, except "index.php"
"**/public/[abcdefghjklmnopqrstuvwxyz]*": true,
"**/public/i[abcdefghijklmopqrstuvwxyz]*": true,
// Hide everything in /vendor, except "laravel" folder.
"**/vendor/[abcdefghijkmnopqrstuvwxyz]*": true,
"**/vendor/l[bcdefghijklmnopqrstuvwxyz]*": true,
"storage/framework/views": true
},
"terminal.integrated.fontSize": 16,
"terminal.integrated.lineHeight": 1.5,
"terminal.integrated.cursorBlinking": false,
"terminal.integrated.cursorStyle": "line",
"diffEditor.ignoreTrimWhitespace": false,
"window.closeWhenEmpty": true,
"files.insertFinalNewline": true,
"element-helper.version": "2.3",
"window.zoomLevel": 0,
"workbench.fontAliasing": "antialiased",
"workbench.colorTheme": "Material Theme",
"workbench.iconTheme": "material-icon-theme",
"zenMode.fullScreen": false,
// "gitlens.historyExplorer.enabled": true,
"workbench.statusBar.visible": false,
"php-cs-fixer.onsave": false,
"php-cs-fixer.config": "/Users/eddychristiandy/.vscode/.php_cs;.php_cs.dist",
"editor.cursorBlinking": "smooth",
"editor.multiCursorModifier": "alt",
"editor.selectionHighlight": false,
"breadcrumbs.enabled": false,
"importCost.timeout": 100000,
"importCost.typescriptExtensions": [
"\\.vue$"
],
"importCost.javascriptExtensions": [
"\\.jsx?$",
"\\.js?$",
"\\.vue$"
],
"workbench.startupEditor": "newUntitledFile",
"[php]": {
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
},
"eslint.enable": true,
"vetur.format.defaultFormatter.html": "prettyhtml",
"vetur.format.defaultFormatter.js": "prettier-eslint",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "auto"
}
},
"vetur.format.defaultFormatter.ts": "prettier-tslint",
"sync.gist": "9ac40b3a46b645861751ab56593ab468",
"editor.formatOnSaveTimeout": 5000,
"workbench.colorCustomizations": {},
"workbench.editor.showTabs": false,
"editor.hover.enabled": false,
"material-icon-theme.activeIconPack": "vue",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.alwaysShowStatus": true,
"eslint.codeActionsOnSave.mode": "problems",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment