aboutsummaryrefslogtreecommitdiff
path: root/files/vim/ftplugin/text/text.vim
blob: c82dff16e9700498d76bee3466f288112d4dad9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
" ~/.vim/ftplugin/text/text.vim
" Plain text files vim configuration
"
" Syntastic linter: proselint

call matchadd('ColorColumn', '\%101v', 100)
setlocal textwidth=100

nnoremap <buffer> <leader>C :sp ~/.vim/ftplugin/text/text.vim<CR>

" Proselint is slow to act
nnoremap <buffer> <leader>sp :SyntasticCheck proselint<CR>
nnoremap <buffer> <leader>e :Errors<CR>