From 7d238fa7475ed4aa39216dda90c7efe26092f80e Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Wed, 8 Jan 2020 22:06:57 +0100 Subject: [PATCH] Markdown preview plugin, using https://github.com/MichaelMure/mdr --- .vimrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vimrc b/.vimrc index a735444..466794e 100644 --- a/.vimrc +++ b/.vimrc @@ -397,6 +397,9 @@ Plug 'godlygeek/tabular' Plug 'plasticboy/vim-markdown' " Use filetype name as fenced code block languages for syntax highlighting let g:vim_markdown_fenced_languages = ['c++=cpp', 'viml=vim', 'bash=sh', 'ini=dosini', 'python=python'] +" Preview markdown files with :PreviewMarkdown - needs mdr from +" https://github.com/MichaelMure/mdr +Plug 'skanehira/preview-markdown.vim' " The NERD Commenter: A plugin that allows for easy commenting of code for