Skip to content

Instantly share code, notes, and snippets.

@dinhquochan
Last active December 7, 2021 04:16
Show Gist options
  • Save dinhquochan/5d8ea83036b7817038b8ca1a57ef8f04 to your computer and use it in GitHub Desktop.
Save dinhquochan/5d8ea83036b7817038b8ca1a57ef8f04 to your computer and use it in GitHub Desktop.
VSCode Settings
{
/**
* Better Defaults
**/
"editor.copyWithSyntaxHighlighting": false,
"editor.cursorSmoothCaretAnimation": true,
"diffEditor.ignoreTrimWhitespace": false,
"editor.emptySelectionClipboard": false,
"workbench.editor.enablePreview": false,
"window.newWindowDimensions": "inherit",
"editor.multiCursorModifier": "ctrlCmd",
"files.trimTrailingWhitespace": true,
"diffEditor.renderSideBySide": false,
"editor.snippetSuggestions": "top",
"editor.detectIndentation": false,
"editor.cursorBlinking": "phase",
"window.nativeFullScreen": false,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"window.restoreWindows": "none",
/**
* Hide Everything
*/
"breadcrumbs.enabled": false,
"workbench.activityBar.visible": true,
"workbench.sideBar.location": "left",
"workbench.statusBar.visible": true,
"workbench.editor.showTabs": false,
"editor.guides.indentation": false,
"editor.guides.bracketPairs": false,
"editor.minimap.enabled": false,
"editor.lineNumbers": "off",
"scm.diffDecorations": "none",
"editor.hover.enabled": true,
"editor.matchBrackets": "never",
"workbench.tips.enabled": false,
"editor.colorDecorators": false,
"git.decorations.enabled": false,
"workbench.startupEditor": "none",
"editor.lightbulb.enabled": false,
"editor.selectionHighlight": false,
"editor.overviewRulerBorder": false,
"editor.renderLineHighlight": "none",
"editor.occurrencesHighlight": false,
"problems.decorations.enabled": false,
"editor.renderControlCharacters": false,
"editor.hideCursorInOverviewRuler": true,
"editor.gotoLocation.multipleReferences": "goto",
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.gotoLocation.multipleDeclarations": "goto",
"workbench.editor.enablePreviewFromQuickOpen": false,
"editor.gotoLocation.multipleImplementations": "goto",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
/**
* Typography
*/
"editor.fontFamily": "MonoLisa",
"editor.fontLigatures": "'liga' off, 'ss04'",
"editor.fontSize": 16,
"editor.fontWeight": 400,
"editor.lineHeight": 2,
"editor.suggestFontSize": 13,
"editor.suggestLineHeight": 28,
"terminal.integrated.fontFamily": "Iosevka Term",
"terminal.integrated.fontSize": 14,
"terminal.integrated.lineHeight": 0,
"workbench.colorTheme": "Dracula Pro",
/**
* Find
**/
"search.useIgnoreFiles": false,
"search.exclude": {
"**/vendor/{[^l],?[^ai]}*": true,
"**/public/{[^i],?[^n]}*": true,
"**/node_modules": true,
"**/dist": true,
"**/_ide_helper.php": true,
"**/composer.lock": true,
"**/package-lock.json": true,
"**/bin/Debug": true,
"**/Obj": true,
"storage": true,
".phpunit.result.cache": true
},
/**
* Code
**/
// Include "-" in word selection.
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?",
"emmet.includeLanguages": {
"blade": "html",
"vue-html": "html",
"vue": "html",
"liquid": "html"
},
"files.associations": {
".php_cs": "php",
".php_cs.dist": "php",
".prettierrc": "yaml"
},
/**
* PHP
**/
"php.suggest.basic": false,
/**
* PHP CS Fixer
**/
"[php]": {
"editor.defaultFormatter": "junstyle.php-cs-fixer",
"editor.formatOnSave": false
},
"php-cs-fixer.onsave": false,
"php-cs-fixer.showOutput": false,
"php-cs-fixer.autoFixByBracket": false,
"php-cs-fixer.config": ".php-cs-fixer.php;/Users/handinh/.php-cs-fixer.php",
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar",
"php-cs-fixer.lastDownload": 1636287093521,
/**
* Namespace Resolver
*/
"namespaceResolver.sortAlphabetically": true,
/**
* Omnisharp
*/
"omnisharp.enableImportCompletion": true,
"omnisharp.organizeImportsOnFormat": true,
"[csharp]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-dotnettools.csharp"
},
/**
* Prettier
**/
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"prettier.requireConfig": true,
"prettier.useEditorConfig": false,
/**
* Auto Close Tag
**/
"auto-close-tag.SublimeText3Mode": true,
"explorer.confirmDelete": false,
/**
* Security
*/
"security.workspace.trust.untrustedFiles": "open",
/**
* Other
*/
"redhat.telemetry.enabled": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment