[ADD][VIM] Syntax highlighting pandoc code blocks

This commit is contained in:
Bruno BELANYI 2020-07-15 22:19:58 +02:00
parent 537e88320a
commit 6b27f18721

View file

@ -0,0 +1,20 @@
" Which code-block languages should I expect to be high-lighted.
let g:pandoc#syntax#codeblocks#embeds#langs=[
\ "bash=sh",
\ "c",
\ "cpp",
\ "go",
\ "haskell",
\ "python",
\ "rust",
\ "sh",
\ "vim",
\ "yaml",
\ "tex",
\ "toml",
\ "perl",
\ "json",
\ "latex=tex",
\ "make",
\ "makefile=make",
\ ]