Created
November 28, 2021 03:46
-
-
Save benatkin/38f856beba292af73e72df8e3e75904b to your computer and use it in GitHub Desktop.
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
{ | |
"workbench.colorTheme": "Default Dark+", | |
"explorer.confirmDragAndDrop": false, | |
"files.autoSave": "afterDelay", | |
"files.exclude": { | |
"**/.env*": true, | |
"**/.eslintrc.json": true, | |
"**/.firebase": true, | |
"**/.gitignore": true, | |
"**/.husky": true, | |
"**/.next": true, | |
"**/.prettierrc": true, | |
"**/.vscode": true, | |
"**/dprint.json": true, | |
"**/node_modules": true, | |
"**/yarn.lock": true | |
}, | |
"editor.guides.indentation": false, | |
"editor.guides.highlightActiveIndentation": false, | |
"editor.renderLineHighlight": "none", | |
"editor.lineNumbers": "off", | |
"editor.minimap.enabled": false, | |
"editor.matchBrackets": "never", | |
"editor.occurrencesHighlight": false, | |
"editor.selectionHighlight": false, | |
"editor.hover.enabled": false, | |
"editor.snippetSuggestions": "none", | |
// Controls if quick suggestions should show up while typing | |
"editor.quickSuggestions": { "other": false, "comments": false, "strings": false }, | |
// Controls if suggestions should be accepted with "Enter" - in addition to "Tab". Helps to avoid ambiguity between inserting new lines and accepting suggestions. | |
"editor.acceptSuggestionOnEnter": "off", | |
// Controls the delay in ms after which quick suggestions will show up. | |
"editor.quickSuggestionsDelay": 10, | |
// Enable word based suggestions | |
"editor.wordBasedSuggestions": false, | |
"problems.decorations.enabled": false, | |
"scm.diffDecorations": "none", | |
"workbench.editor.decorations.badges": false, | |
"explorer.decorations.badges": false, | |
"editor.suggest.showColors": false, | |
"explorer.decorations.colors": false, | |
"workbench.editor.decorations.colors": false, | |
"outline.problems.badges": false, | |
"git.countBadge": "off", | |
"update.mode": "start" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment