unlet! skip_defaults_vim source $VIMRUNTIME/defaults.vim set autoindent set smartindent 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