Note: This site is currently "Under construction". I'm migrating to a new version of my site building software. Lots of things are in a state of disrepair as a result (for example, footnote links aren't working). It's all part of the process of building in public. Most things should still be readable though.

Markdown Syntax Highlighting for Neovim with vim-markdown

I'm using vim-markdown for syntax highlighting of markdown file code fences in neovim.

The instillation instructions don't mention `Plug` but this worked for me inside `~/.config/nvim/init.vim`

call plug#begin("~/.vim/plugged") " ... other plugins Plug 'godlygeek/tabular' Plug 'plasticboy/vim-markdown' call plug#end()

Followed by running this from the command line

nvim +PlugInstall

Or, starting nvim and running the command:

:PlugInstall