blob: 80d125c7c76b2ccb7bc6f96f09fbfcfd334f1721 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
" Mail messages
" Automatically format paragraphs and set format=flowed "w" option
setlocal formatoptions+=aw
" Ensure that we don't end up with double spaces between sentences
setlocal nojoinspaces
setlocal spell
" Make bulleted lists with '*' not start wrapped lines with '*'
setlocal comments-=mb:* comments+=fb:*
" Remove last two empty lines below signature
nnoremap <buffer> <leader>e m`Gdk``
|