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

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

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>