Skip to content

Instantly share code, notes, and snippets.

@TheKayThatWasOrange
Last active May 10, 2026 09:55
Show Gist options
  • Select an option

  • Save TheKayThatWasOrange/a7053812783fcff06acb6a8f7431a6a9 to your computer and use it in GitHub Desktop.

Select an option

Save TheKayThatWasOrange/a7053812783fcff06acb6a8f7431a6a9 to your computer and use it in GitHub Desktop.
Fuck All VSCode Popup Bullshit
/*
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