Created
January 8, 2023 18:02
-
-
Save bafonins/6766d34684f6e0c7e6b637bf3ae1b3a2 to your computer and use it in GitHub Desktop.
default 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
| { | |
| "editor.bracketPairColorization.independentColorPoolPerBracketType": true, | |
| "editor.guides.bracketPairs": true, | |
| "editor.renderWhitespace": "boundary", | |
| "editor.fontFamily": "Cascadia Code", | |
| "editor.fontSize": 14, | |
| "editor.fontWeight": "600", | |
| "editor.letterSpacing": -0.2, | |
| "editor.lightbulb.enabled": false, | |
| "editor.rulers": [80, 100, 120], | |
| "editor.cursorSurroundingLines": 20, | |
| "editor.cursorSurroundingLinesStyle": "all", | |
| "editor.tabSize": 2, | |
| "editor.glyphMargin": true, | |
| "editor.fontLigatures": true, | |
| "editor.lineNumbers": "relative", | |
| "editor.formatOnPaste": false, | |
| "editor.minimap.enabled": false, | |
| "editor.cursorSmoothCaretAnimation": false, | |
| "editor.smoothScrolling": false, | |
| "terminal.external.osxExec": "Kitty.app", | |
| "telemetry.telemetryLevel": "off", | |
| "editor.cursorStyle": "block-outline", | |
| "editor.suggestSelection": "first", | |
| "files.exclude": { | |
| "USE_GITIGNORE": true | |
| }, | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "**/bower_components": true, | |
| "**/*.code-search": true, | |
| "**/coverage": true, | |
| "**/dist": true, | |
| "**/build": true, | |
| "**/.build": true, | |
| "**/.gh-pages": true | |
| }, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true | |
| }, | |
| "eslint.validate": [ | |
| "javascript", | |
| "javascriptreact", | |
| "typescript", | |
| "typescriptreact" | |
| ], | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.preferredDarkColorTheme": "Visual Studio Dark", | |
| "workbench.colorTheme": "GitHub Dark Dimmed", | |
| "editor.colorDecorators": false, | |
| "workbench.colorCustomizations": { | |
| "sideBar.background": "#2A2834", | |
| "editor.background": "#282c34", | |
| "editor.foreground": "#abb2bf" | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment