.vim/ftplugin/mail.vim

Wed, 31 Aug 2016 16:47:08 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 31 Aug 2016 16:47:08 -0400
changeset 383
c14c440cda0f
parent 368
91d4fb4e0a42
child 387
d16b5c66461a
permissions
-rw-r--r--

Add note about shebang for now


function! JumpAndInsert()
  if line('$') > 1
    :0
    :/^$/
    :normal 2] 
    :+1
    :exe 'startinsert'
  endif
endfunction

augroup mail_filetype
  autocmd!
  autocmd BufReadPost mutt-* :call JumpAndInsert()
augroup END

setl textwidth=72
setl formatoptions+=awt12
setl spell

mercurial