minor markdown updates
This commit is contained in:
parent
9ef45b8529
commit
f0b2f87537
|
@ -10,7 +10,10 @@ Plugin 'majutsushi/tagbar'
|
||||||
"Plugin 'scrooloose/nerdcommenter'
|
"Plugin 'scrooloose/nerdcommenter'
|
||||||
"Plugin 'kalafut/vim-taskjuggler'
|
"Plugin 'kalafut/vim-taskjuggler'
|
||||||
Plugin 'iamcco/markdown-preview.nvim'
|
Plugin 'iamcco/markdown-preview.nvim'
|
||||||
|
"Plugin 'godlygeek/tabular'
|
||||||
|
"Plugin 'preservim/vim-markdown'
|
||||||
|
|
||||||
" debugging inside vim
|
" debugging inside vim
|
||||||
"Plugin 'Shougo/vimproc.vim'
|
"Plugin 'Shougo/vimproc.vim'
|
||||||
"Plugin 'idanarye/vim-vebugger'
|
"Plugin 'idanarye/vim-vebugger'
|
||||||
|
|
||||||
|
|
|
@ -161,7 +161,7 @@ let g:SignatureMap = {
|
||||||
|
|
||||||
" set to 1, nvim will open the preview window after entering the markdown buffer
|
" set to 1, nvim will open the preview window after entering the markdown buffer
|
||||||
" default: 0
|
" default: 0
|
||||||
let g:mkdp_auto_start = 1
|
let g:mkdp_auto_start = 0
|
||||||
|
|
||||||
" set to 1, the nvim will auto close current preview window when change
|
" set to 1, the nvim will auto close current preview window when change
|
||||||
" from markdown buffer to another buffer
|
" from markdown buffer to another buffer
|
||||||
|
@ -250,6 +250,6 @@ let g:mkdp_page_title = '${name}'
|
||||||
" these filetypes will have MarkdownPreview... commands
|
" these filetypes will have MarkdownPreview... commands
|
||||||
let g:mkdp_filetypes = ['markdown']
|
let g:mkdp_filetypes = ['markdown']
|
||||||
|
|
||||||
autocmd FileType mail nmap <F5> <Plug>MarkdownPreview
|
autocmd FileType markdown nmap <F5> <Plug>MarkdownPreview
|
||||||
autocmd FileType mail nmap <F6> <Plug>MarkdownPreviewStop
|
autocmd FileType markdown nmap <F6> <Plug>MarkdownPreviewStop
|
||||||
autocmd FileType mail nmap <F7> <Plug>MarkdownPreviewToggle
|
autocmd FileType markdown nmap <F7> <Plug>MarkdownPreviewToggle
|
||||||
|
|
Loading…
Reference in New Issue