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