Skip to content

Instantly share code, notes, and snippets.

@roderik
Created December 2, 2023 12:03
Show Gist options
  • Save roderik/6154f22a0f75bae75176a3472118fe3f to your computer and use it in GitHub Desktop.
Save roderik/6154f22a0f75bae75176a3472118fe3f to your computer and use it in GitHub Desktop.
{
"editor.inlineSuggest.enabled": true,
"workbench.productIconTheme": "fluent-icons",
"workbench.iconTheme": "vscode-icons",
"diffEditor.ignoreTrimWhitespace": false,
"editor.fontSize": 13,
"editor.tabSize": 2,
"git.enableSmartCommit": true,
"editor.defaultFormatter": "biomejs.biome",
"typescript.preferences.preferTypeOnlyAutoImports": true,
"editor.codeActionsOnSave": {
"quickfix.biome": true,
"source.organizeImports.biome": true
},
"typescript.tsserver.experimental.enableProjectDiagnostics": true,
"git.confirmSync": false,
"git.autofetch": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": true,
"scminput": false
},
"workbench.tree.renderIndentGuides": "always",
"workbench.colorCustomizations": {
"tree.indentGuidesStroke": "#05ef3c9c"
},
"solidity.compilerOptimization": 2000,
"solidity.compileUsingRemoteVersion": "v0.8.20+commit.a1b79de6",
"editor.fontFamily": "'Monaspace Neon','Operator Mono', 'Fira Code Hack', Menlo, Monaco, 'Courier New', monospace",
"vsicons.dontShowNewVersionMessage": true,
"editor.fontLigatures": "'calt' on, 'liga' on, 'dlig' on, 'ss01' on, 'ss02' on, 'ss03' on, 'ss04' on, 'ss05' on, 'ss06' on, 'ss07' on, 'ss08' on",
"editor.codeLensFontFamily": "'Monaspace Radon','Operator Mono', 'Fira Code Hack', Menlo, Monaco, 'Courier New', monospace",
"editor.inlayHints.fontFamily": "'Monaspace Krypton','Operator Mono', 'Fira Code Hack', Menlo, Monaco, 'Courier New', monospace",
"workbench.fontAliasing": "auto",
"debug.console.fontFamily": "'Monaspace Neon','Operator Mono', 'Fira Code Hack', Menlo, Monaco, 'Courier New', monospace",
"debug.console.fontSize": 13,
"terminal.integrated.fontFamily": "'Monaspace Neon','Operator Mono', 'Fira Code Hack', Menlo, Monaco, 'Courier New', monospace",
"terminal.integrated.fontSize": 13,
"chat.editor.fontFamily": "'Monaspace Krypton','Operator Mono', 'Fira Code Hack', Menlo, Monaco, 'Courier New', monospace",
"errorLens.fontFamily": "'Monaspace Argon','Operator Mono', 'Fira Code Hack', Menlo, Monaco, 'Courier New', monospace",
"errorLens.fontStyleItalic": true,
"editor.fontWeight": "normal",
"editor.minimap.enabled": false,
"redhat.telemetry.enabled": false,
"security.promptForLocalFileProtocolHandling": false,
"workbench.editor.enablePreview": false,
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js, ${capture}.typegen.ts",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts, ${capture}.typegen.ts",
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml",
"*.mts": "${capture}.typegen.ts",
"*.cts": "${capture}.typegen.ts"
},
"typescript.inlayHints.enumMemberValues.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.parameterTypes.enabled": true,
"typescript.inlayHints.propertyDeclarationTypes.enabled": true,
"typescript.inlayHints.variableTypes.enabled": true,
"workbench.colorTheme": "Dracula",
"typescript.tsserver.maxTsServerMemory": 16384,
"workbench.activityBar.orientation": "vertical",
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.disableAutomaticTypeAcquisition": true,
"editor.formatOnSave": true,
"biome.rename": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment