" ~/.vim/ftplugin/vimwiki.vim " vimwiki-specific vim configuration " " Syntastic linter: mdl, proselint, textlint let g:syntastic_vimwiki_checkers = ['markdown/mdl'] " Tabs hate: tabs are expanded to 2 spaces setlocal tabstop=2 shiftwidth=2 expandtab " Show existing tabs (they can be deleted with :retab) setlocal list " Column marker: 80 characters call matchadd('ColorColumn', '\%101v', 100) setlocal textwidth=100 nnoremap C :sp ~/.vim/ftplugin/vimwiki/vimwiki.vim nnoremap e :Errors nnoremap t :-1r ~/.vim/ftplugin/vimwiki/snips/template.txt nnoremap c :w:!toPDF.sh "%" nnoremap o :w:!toPDF.sh -o "%" " Syntax highlighting colors highlight Title ctermfg=darkblue