Last active
July 23, 2021 11:35
-
-
Save AniketSK/862f85e45dee102b6171596f7f50bd67 to your computer and use it in GitHub Desktop.
Settings to turn off any kind of tooltip for vscode. This is particularly helpful if you're trying to write text and the constant tooltips are messing with you. By default it doesn't consider mdx markdown, so these settings make sure it also considers mdx, while applying the changes to markdown files.
This file contains 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
{ | |
"files.autoSave": "afterDelay", | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"files.associations": { | |
"*.mdx": "markdown", | |
"*.md":"markdown" | |
}, | |
"[markdown]":{ | |
"editor.wordWrap": "on", | |
"editor.quickSuggestions": false, | |
"editor.wordBasedSuggestions": false, | |
"editor.suggestOnTriggerCharacters": false, | |
"editor.inlineSuggest.enabled": false, | |
"editor.snippetSuggestions": "none", | |
"editor.parameterHints.enabled": false, | |
"editor.inlayHints.enabled": false, | |
"editor.quickSuggestionsDelay": 1000, | |
"editor.suggest.preview": false, | |
"editor.codeLens": false, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment