Added plugin to vim for writing prose

This commit is contained in:
Tony Grosinger 2017-09-14 12:41:10 -07:00
parent a35bdeef7c
commit a7d1e93aee

7
.vimrc
View File

@ -39,6 +39,13 @@ Plug 'tpope/vim-fugitive'
" they become hidden.
autocmd BufReadPost fugitive://* set bufhidden=delete
Plug 'reedes/vim-pencil'
augroup pencil
autocmd!
autocmd FileType markdown,mkd call pencil#init()
autocmd FileType text call pencil#init()
augroup END
" Syntax Checking {{{1
Plug 'vim-syntastic/syntastic'