Last active
May 10, 2026 09:55
-
-
Save TheKayThatWasOrange/a7053812783fcff06acb6a8f7431a6a9 to your computer and use it in GitHub Desktop.
Fuck All VSCode Popup Bullshit
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
| /* | |
| How many fucking settings do you need to stop plastering this | |
| stupid fucking shit all over my fucking screen, Microsoft? | |
| */ | |
| { | |
| "accessibility.verbosity.inlineCompletions": false, | |
| "editor.acceptSuggestionOnCommitCharacter": false, | |
| "editor.acceptSuggestionOnEnter": "off", | |
| "editor.hover.above": false, | |
| "editor.hover.enabled": "off", | |
| "editor.inlayHints.enabled": "off", | |
| "editor.inlineSuggest.edits.allowCodeShifting": "never", | |
| "editor.inlineSuggest.edits.renderSideBySide": "never", | |
| "editor.inlineSuggest.edits.showLongDistanceHint": false, | |
| "editor.inlineSuggest.enabled": false, | |
| "editor.inlineSuggest.suppressSuggestions": true, | |
| "editor.lightbulb.enabled": "off", | |
| "editor.parameterHints.enabled": false, | |
| "editor.quickSuggestions": { | |
| "comments": "off", | |
| "other": "off", | |
| "strings": "off" | |
| }, | |
| "editor.suggestOnTriggerCharacters": false, | |
| "editor.wordBasedSuggestions": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment