How to disable inline preview in vscode / tinymist?

If you want to disable these suggestions only for typst documents and keep them for others (e.g. programming languages), you can insert this block into your settings.json:

"[typst]": {
  "editor.quickSuggestions": {
    "other": "off"
  }
}
3 Likes