Added word plugins

This commit is contained in:
mark
2021-04-09 14:28:18 -07:00
parent 896b2f58b6
commit 27c47c93bf
8 changed files with 33 additions and 0 deletions

8
vimrc
View File

@ -248,3 +248,11 @@ endif
nmap <F2> <Plug>ToggleHexHighlight
"filetype plugin on " may already be in your .vimrc
let g:pencil#textwidth = 70
augroup pencil
autocmd!
autocmd FileType markdown,mkd call pencil#init({'wrap': 'soft'})
autocmd FileType text call pencil#init()
augroup END