18 lines
479 B
VimL
18 lines
479 B
VimL
Plug 'vim-pandoc/vim-pandoc'
|
|
Plug 'vim-pandoc/vim-pandoc-syntax'
|
|
|
|
" 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
|