1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 22:55:10 +01:00

pandoc works with vim >= 7.4

This commit is contained in:
Michiel Scholten
2014-06-24 14:04:04 +02:00
parent 548b790c6a
commit 4ac55fee9a

8
.vimrc
View File

@@ -26,9 +26,11 @@ Plugin 'jnurmine/Zenburn.git'
Plugin 'davidhalter/jedi-vim'
" Handy Markdown stuff
Plugin 'tpope/vim-markdown'
" Pandoc, for stuff like autocompletion of citations from bibtex, other LaTeX
" stuff
Plugin 'vim-pandoc/vim-pandoc'
if v:version >= 704
" Pandoc, for stuff like autocompletion of citations from bibtex, other LaTeX
" stuff. Works with vim >= 7.4
Plugin 'vim-pandoc/vim-pandoc'
endif
" Distraction-free writing, start with <Leader>V (\V)
Plugin 'mikewest/vimroom'