Skip to content

Instantly share code, notes, and snippets.

@misebox
Last active March 16, 2022 18:23
Show Gist options
  • Save misebox/c0a2b60dbdae28da6755e5bd0b390ab9 to your computer and use it in GitHub Desktop.
Save misebox/c0a2b60dbdae28da6755e5bd0b390ab9 to your computer and use it in GitHub Desktop.
VSCode minimal settings.json.
{
// Instead of turning this off, use the key binding [CTRL+k Enter] to change an editor in preview mode into edit mode.
"workbench.editor.enablePreview": true,
// Useful suggestion
"editor.quickSuggestions": true,
"editor.suggest.statusBar.visible": true,
"editor.suggest.localityBonus": true,
"editor.suggest.showKeywords": true,
// Prevent annoying features
"editor.wordBasedSuggestions": false,
"editor.suggest.showSnippets": false,
"editor.quickSuggestionsDelay": 1000, // ms
"editor.suggestOnTriggerCharacters": false,
"editor.acceptSuggestionOnEnter": "off",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment