Skip to content

Instantly share code, notes, and snippets.

@mtvbrianking
Last active September 23, 2023 08:02
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 mtvbrianking/27434e6ad42f7d7fd6f6b0a03de1770c to your computer and use it in GitHub Desktop.
Save mtvbrianking/27434e6ad42f7d7fd6f6b0a03de1770c to your computer and use it in GitHub Desktop.
vscode settings json
{
"files.exclude": {
"**/node_modules": true
},
"debug.console.fontFamily": "JetBrains Mono",
"debug.console.fontSize": 14,
"debug.console.lineHeight": 25,
"debug.toolBarLocation": "docked",
"editor.codeLens": true,
"editor.fontFamily": "'JetBrains Mono', 'Fira Code', 'Consolas','monospace'",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.formatOnSave": true,
"editor.lineHeight": 25,
"editor.lineNumbers": "on",
"editor.minimap.enabled": false,
"workbench.activityBar.visible": true,
"workbench.colorTheme": "GitHub Dark Default",
"workbench.editor.showTabs": true,
"workbench.editor.untitled.hint": "hidden",
"workbench.iconTheme": null,
"workbench.startupEditor": "none",
"workbench.statusBar.visible": false,
"workbench.tree.indent": 15,
"workbench.tree.renderIndentGuides": "onHover",
"window.menuBarVisibility": "toggle",
"explorer.autoReveal": 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"
},
"python.formatting.provider": "none",
"terminal.integrated.enableMultiLinePasteWarning": false,
"window.zoomLevel": 1,
}
@mtvbrianking
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment