Skip to content

Instantly share code, notes, and snippets.

@jdgregson
Last active October 28, 2022 23:01
Show Gist options
  • Save jdgregson/5225205e7131612390e47969cfd4167b to your computer and use it in GitHub Desktop.
Save jdgregson/5225205e7131612390e47969cfd4167b to your computer and use it in GitHub Desktop.
vscode config
{
"workbench.colorTheme": "Solarized Dark",
"editor.mouseWheelScrollSensitivity": 2,
"editor.hover.delay": 600,
"editor.occurrencesHighlight": false,
"editor.renderLineHighlight": "all",
"editor.semanticHighlighting.enabled": true,
"editor.folding": false,
"indenticator.showCurrentDepthInStatusBar": false,
"indenticator.showHover": false,
"indenticator.style": "double",
"editor.emptySelectionClipboard": false,
"editor.fontFamily": "Consolas",
"editor.tabSize": 2,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"remote.SSH.remotePlatform": {
"vncuser": "linux",
"firefox-ios": "linux"
},
"editor.rulers": [80],
"explorer.confirmDragAndDrop": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"html.autoClosingTags": false,
"javascript.autoClosingTags": false,
"typescript.autoClosingTags": false,
"editor.autoClosingBrackets": "never",
"editor.autoClosingDelete": "never",
"editor.autoClosingOvertype": "never",
"editor.autoClosingQuotes": "never",
"editor.multiCursorPaste": "full",
"editor.fontSize": 17,
"editor.autoSurround": "never",
"editor.minimap.showSlider": "always",
"files.trimTrailingWhitespace": true,
"intelephense.format.braces": "k&r",
"powershell.codeFormatting.whitespaceAfterSeparator": false,
"powershell.codeFormatting.whitespaceAroundOperator": false,
"powershell.codeFormatting.whitespaceBeforeOpenBrace": false,
"powershell.codeFormatting.whitespaceBeforeOpenParen": false,
"powershell.codeFormatting.whitespaceInsideBrace": false,
"powershell.codeFormatting.addWhitespaceAroundPipe": false,
"trailing-spaces.highlightCurrentLine": false,
"workbench.startupEditor": "none",
"workbench.editor.untitled.hint": "hidden",
"workbench.editor.splitOnDragAndDrop": false,
"prettier.bracketSpacing": false,
"prettier.singleQuote": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"cSpell.userWords": ["gregson", "untrust", "untrusted"],
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"html.format.enable": false,
"typescript.format.enable": false,
"typescript.format.insertSpaceAfterCommaDelimiter": false,
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": false,
"typescript.format.insertSpaceAfterSemicolonInForStatements": false,
"typescript.format.insertSpaceBeforeAndAfterBinaryOperators": false,
"json.format.enable": false,
"html.format.preserveNewLines": false,
"[plaintext]": {
"editor.wordBasedSuggestions": false,
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
}
},
"scm.diffDecorationsGutterAction": "none",
"redhat.telemetry.enabled": false,
"editor.stopRenderingLineAfter": -1,
"security.workspace.trust.emptyWindow": false,
"security.workspace.trust.startupPrompt": "never",
"workbench.colorCustomizations": {
"banner.background": "#e68d29",
"banner.foreground": "#000000",
"banner.iconForeground": "#000000"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"snyk.yesWelcomeNotification": false,
"editor.guides.indentation": false,
"editor.renderWhitespace": "trailing",
"javascript.format.insertSpaceAfterConstructor": true,
"javascript.preferences.quoteStyle": "single",
"javascript.referencesCodeLens.enabled": true,
"html.autoCreateQuotes": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment