Skip to content

Editing Notes with VS Code

The NoteWriter works with any editor. If you are using VS Code, this page contains my personal tips.

TODO complete

  • Foam: Great list of plugins to work with Markdown files.
  • :emojisense:, by Matt Bierner: Enter emojis faster using autocompletion. Rely on github/gemoji (see complete listing).
  • Grammarly: Great to catch most typos and grammar errors if you accept to have “errors” with arcane terminology. Here is the plugin configuration (cf .vscode/settings.json) to limit Grammarly on Markdown files:
    {
    "grammarly.selectors": [
    {
    "language": "markdown",
    "scheme": "file"
    }
    ]
    }