mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
8 lines
299 B
VimL
8 lines
299 B
VimL
set concealcursor=c
|
|
set synmaxcol=3000 " For long Chinese paragraphs
|
|
|
|
if exists(':FootnoteNumber')
|
|
nnoremap <buffer> <Plug>AddVimFootnote :<c-u>call markdownfootnotes#VimFootnotes('i')<CR>
|
|
inoremap <buffer> <Plug>AddVimFootnote <C-O>:<c-u>call markdownfootnotes#VimFootnotes('i')<CR>
|
|
endif
|