vim / .vimrcon commit [vim] set up vim-panodc-syntax (aa978c1)
   1unlet! skip_defaults_vim
   2source $VIMRUNTIME/defaults.vim
   3
   4set autoindent
   5set smartindent
   6set nu
   7set expandtab
   8set shiftwidth=2
   9set softtabstop=2
  10
  11
  12" setup Vundle:
  13set nocompatible              " be iMproved, required
  14filetype off                  " required
  15
  16" set the runtime path to include Vundle and initialize
  17set rtp+=~/.vim/bundle/Vundle.vim
  18call vundle#begin()
  19
  20Plugin 'VundleVim/Vundle.vim' " let Vundle manage Vundle, required
  21
  22Plugin 'vim-pandoc/vim-pandoc-syntax'
  23Plugin 'godlygeek/tabular'
  24
  25" All of your Plugins must be added before the following line
  26call vundle#end()            " required
  27filetype plugin indent on    " required
  28
  29" markdown group for vim-pandoc-syntax:
  30augroup pandoc_syntax
  31 au! BufNewFile,BufFilePre,BufRead *.md set filetype=markdown.pandoc
  32augroup END
  33
  34let g:vim_markdown_conceal=1
  35hi conceal None