" ~/.vim/ftplugin/text/text.vim " Plain text files vim configuration " " Syntastic linter: proselint " 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 let mapleader = " " call matchadd('ColorColumn', '\%101v', 100) setlocal textwidth=100 nnoremap C :sp ~/.vim/ftplugin/text/text.vim " Proselint is slow to act nnoremap sp :SyntasticCheck proselint nnoremap e :Errors