1
0
nvim-config/plugins/pandoc.vim
2015-11-16 16:14:51 +01:00

20 lines
513 B
VimL

if v:version >= 704
Plug 'vim-pandoc/vim-pandoc'
Plug 'vim-pandoc/vim-pandoc-syntax'
endif
" the filetypes for which vim-pandoc should be used
let g:pandoc#filetypes#handles = [ "markdown", "pandoc" ]
" enable pandoc for markdown
let g:pandoc#filetypes#pandoc_markdown = 1
" disable the spellchecker
let g:pandoc#spell#enabled = 0
" don't use the conceal functionality
let g:pandoc#syntax#conceal#use = 0
" would you please use the defined foldcolums settings, thanks
let g:pandoc#folding#fdc = &fdc