blob: 5d995b2dfb8414f8b47d604ef35f40fb6792a242 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
" Git commit message settings
" Indentation
setlocal expandtab
setlocal tabstop=2
setlocal softtabstop=2
setlocal shiftwidth=2
setlocal textwidth=72
" Make bulleted lists with '*' not start wrapped lines with '*'
setlocal comments-=mb:* comments+=fb:*
|