Skip to content

Instantly share code, notes, and snippets.

@trungpv1601
Last active May 28, 2020 04:12
Show Gist options
  • Save trungpv1601/94690534ce21fdeff2bac173a7205cb6 to your computer and use it in GitHub Desktop.
Save trungpv1601/94690534ce21fdeff2bac173a7205cb6 to your computer and use it in GitHub Desktop.
MY SETUP VSCODE
{
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": true,
"phpVersion": "7.3",
"trailingCommaPHP": true,
"braceStyle": "psr-2",
"requirePragma": false,
"insertPragma": false
}
{
"workbench.iconTheme": null,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"telemetry.enableTelemetry": false,
"gitlens.advanced.telemetry.enabled": false,
"terminal.enableAppInsights": false,
"telemetry.enableCrashReporter": false,
"editor.fontFamily": "Roboplex",
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"workbench.sideBar.location": "right",
"workbench.fontAliasing": "antialiased",
"editor.renderWhitespace": "all",
"editor.fontSize": 14,
"editor.lineHeight": 30,
"editor.letterSpacing": 0,
"editor.suggestFontSize": 14,
"editor.suggestLineHeight": 30,
"editor.fontLigatures": true,
"terminal.integrated.fontSize": 14,
"terminal.integrated.lineHeight": 1.5,
"terminal.integrated.cursorBlinking": false,
"terminal.integrated.cursorStyle": "line",
"editor.emptySelectionClipboard": false,
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?",
"editor.quickSuggestionsDelay": 0,
"diffEditor.ignoreTrimWhitespace": false,
"workbench.editor.showTabs": false,
"editor.minimap.enabled": false,
"editor.codeLens": false,
"workbench.activityBar.visible": false,
"workbench.startupEditor": "none",
"editor.renderControlCharacters": false,
"editor.renderIndentGuides": false,
"editor.renderLineHighlight": "none",
"editor.matchBrackets": "never",
"editor.lineNumbers": "off",
"explorer.openEditors.visible": 0,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"workbench.statusBar.visible": false,
"git.autofetch": true,
"emmet.triggerExpansionOnTab": true,
"python.jediEnabled": false,
"editor.semanticHighlighting.enabled": false,
"php.validate.enable": false,
"php.suggest.basic": false,
"search.collapseResults": "alwaysCollapse",
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/.git": true,
"**/storage": true,
"**/tests": true,
"_ide_helper.php": true,
"_ide_helper_models.php": true,
"package-lock.json": true
},
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.associations": {
"*.blade.php": "html",
"*.php": "php",
"*.vue": "vue",
"*.php-cs": "php"
},
"editor.cursorBlinking": "smooth",
"editor.formatOnType": false,
"editor.formatOnPaste": false,
"editor.autoIndent": "advanced",
"git.showPushSuccessNotification": true,
"editor.gotoLocation.multipleDefinitions": "goto",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"files.exclude": {
".editorconfig": true,
"*.log": true,
"**/node_modules": true,
"artisan": true,
".idea": true,
"server.php": true,
"storage": true,
"tests": true,
"**/.git": true,
"__pycache__": true,
"**/storage": true,
"**/tests/": true,
"package-lock.json": true,
"_ide_helper.php": true,
"_ide_helper_models.php": true
},
"workbench.colorTheme": "GitHub Light",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment