From aa978c15bab24a96b94ea4f460618fabc6d712d1 Mon Sep 17 00:00:00 2001 From: Andrew Lorimer Date: Mon, 4 Mar 2019 21:59:44 +1100 Subject: [PATCH] [vim] set up vim-panodc-syntax --- vim/.vimrc | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/vim/.vimrc b/vim/.vimrc index 1df3167..7b01c8b 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -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 -- 2.49.0