[vim] set up vim-panodc-syntax
authorAndrew Lorimer <andrew@lorimer.id.au>
Mon, 4 Mar 2019 10:59:44 +0000 (21:59 +1100)
committerAndrew Lorimer <andrew@lorimer.id.au>
Mon, 4 Mar 2019 10:59:44 +0000 (21:59 +1100)
vim/.vimrc
index 1df31674a537614ebcf6a4d76bf9751cd89f3a72..7b01c8bc9f0506b500601712c2fce277eddfd33e 100644 (file)
@@ -7,3 +7,29 @@ set nu
 set expandtab
 set shiftwidth=2
 set softtabstop=2
+
+
+" setup Vundle:
+set nocompatible              " be iMproved, required
+filetype off                  " required
+
+" set the runtime path to include Vundle and initialize
+set rtp+=~/.vim/bundle/Vundle.vim
+call vundle#begin()
+
+Plugin 'VundleVim/Vundle.vim' " let Vundle manage Vundle, required
+
+Plugin 'vim-pandoc/vim-pandoc-syntax'
+Plugin 'godlygeek/tabular'
+
+" All of your Plugins must be added before the following line
+call vundle#end()            " required
+filetype plugin indent on    " required
+
+" markdown group for vim-pandoc-syntax:
+augroup pandoc_syntax
+ au! BufNewFile,BufFilePre,BufRead *.md set filetype=markdown.pandoc
+augroup END
+
+let g:vim_markdown_conceal=1
+hi conceal None