Skip to content

Instantly share code, notes, and snippets.

@gen3vra
Created March 6, 2022 05: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 gen3vra/bb483fd76c4c2ec33bcbef2be6405328 to your computer and use it in GitHub Desktop.
Save gen3vra/bb483fd76c4c2ec33bcbef2be6405328 to your computer and use it in GitHub Desktop.
better vscode settings
{
"extensions.ignoreRecommendations": true,
"extensions.showRecommendationsOnlyOnDemand": true,
"workbench.startupEditor": "none",
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",
"php.suggest.basic": false,
"php.executablePath": "C:/php/php.exe",
"php.validate.executablePath": "C:/php/php.exe",
"phpfmt.php_bin": "C:/php/php.exe",
"window.titleBarStyle": "custom",
"editor.fontFamily": "Cascadia Code",
"sync.autoDownload": true,
"sync.quietSync": true,
"files.autoSave": "onFocusChange",
"sync.autoUpload": true,
"html.autoClosingTags": false,
"editor.wordWrap": "on",
"editor.autoClosingOvertype": "never",
"editor.autoClosingQuotes": "never",
"editor.autoSurround": "never",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.dragAndDrop": false,
"editor.emptySelectionClipboard": false,
"diffEditor.maxComputationTime": 0,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.quickSuggestionsDelay": 0,
"editor.suggest.insertHighlight": true,
"window.newWindowDimensions": "maximized",
"explorer.incrementalNaming": "smart",
"search.searchOnTypeDebouncePeriod": 1000,
"search.showLineNumbers": true,
"search.smartCase": true,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "underline",
"terminal.integrated.cwd": "C:\\Users\\gen",
"update.mode": "start",
"auto-close-tag.enableAutoCloseSelfClosingTag": false,
"auto-close-tag.enableAutoCloseTag": false,
"bracketPairColorizer.colorMode": "Independent",
"bracketPairColorizer.forceUniqueOpeningColor": true,
"bracketPairColorizer.highlightActiveScope": true,
"bracketPairColorizer.showBracketsInGutter": true,
"bracketPairColorizer.showBracketsInRuler": true,
"bracketPairColorizer.timeOut": 1000,
"workbench.iconTheme": "material-icon-theme",
"backgroundPhiColors.activeScope": "document",
"materialTheme.accent": "Pink",
"vsicons.dontShowNewVersionMessage": true,
"[php]": {
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"workbench.colorCustomizations": {
"activityBarBadge.background": "#f0c2d5",
"list.activeSelectionForeground": "#f0c2d5",
"list.inactiveSelectionForeground": "#f0c2d5",
"list.highlightForeground": "#f0c2d5",
"scrollbarSlider.activeBackground": "#FF408150",
"editorSuggestWidget.highlightForeground": "#f0c2d5",
"textLink.foreground": "#f0c2d5",
"progressBar.background": "#f0c2d5",
"pickerGroup.foreground": "#f0c2d5",
"tab.activeBorder": "#f0c2d5",
"notificationLink.foreground": "#f0c2d5",
"editorWidget.resizeBorder": "#f0c2d5",
"editorWidget.border": "#f0c2d5",
"settings.modifiedItemIndicator": "#f0c2d5",
"settings.headerForeground": "#f0c2d5",
"panelTitle.activeBorder": "#f0c2d5",
"breadcrumb.activeSelectionForeground": "#f0c2d5",
"menu.selectionForeground": "#f0c2d5",
"menubar.selectionForeground": "#f0c2d5",
"editor.findMatchBorder": "#f0c2d5",
"selection.background": "#f794b56c",
"editorLineNumber.foreground": "#adadad",
"editorLineNumber.activeForeground": "#ff94f1",
"editorLink.activeForeground":"#ffffff",
"editorBracketMatch.border":"#f0c2d5",
"editorBracketMatch.background":"#242307",
},
"editor.autoClosingBrackets": "never",
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"editor.suggest.insertMode": "replace",
"python.dataScience.useDefaultConfigForJupyter": false,
"python.dataScience.askForKernelRestart": false,
"python.pythonPath": "/usr/bin/python",
"python.showStartPage": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"[c]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
},
"editor.formatOnSave": true,
"php.validate.run": "onType",
"files.autoSaveDelay": 100,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"telemetry.telemetryLevel": "off",
"intelephense.telemetry.enabled": false,
"workbench.colorTheme": "Community Material Theme Darker High Contrast",
"security.workspace.trust.untrustedFiles": "newWindow",
"[css]": {
"editor.defaultFormatter": "aeschli.vscode-css-formatter"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[csharp]": {
"editor.defaultFormatter": "ms-dotnettools.csharp"
},
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"redhat.telemetry.enabled": false,
"atlascode.bitbucket.enabled": true,
"atlascode.jira.enabled": false,
"jupyter.askForKernelRestart": false,
"jupyter.jupyterServerType": "local"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment