nvim: ftplugin: markdown: Update pandoc settings

Use citeproc as backend for bibliographic completion. The embedded
language setting is required to highlight the language blocks.
This commit is contained in:
Sanchayan Maity 2021-01-13 16:16:49 +05:30
parent 30011d5c9d
commit 054b3188ce

View file

@ -11,3 +11,5 @@ let g:pandoc#keyboard#use_default_mappings = 1
let g:pandoc#compiler#command = "pandoc"
let g:pandoc#formatting#textwidth = 79
let g:pandoc#formatting#mode = "hA"
let g:pandoc#completion#bib#mode = 'citeproc'
let g:pandoc#syntax#codeblocks#embeds#langs = ["c", "rust", "haskell", "literatehaskell=lhaskell", "bash=sh"]