Last active
September 23, 2023 08:02
-
-
Save mtvbrianking/27434e6ad42f7d7fd6f6b0a03de1770c to your computer and use it in GitHub Desktop.
vscode settings json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Source: https://github.com/zepfietje/minimal-code