blob: 44a2e3f092d6593945c3d6ec0bb9bb0f2d13042c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
" 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:*
" Proper line wrapping for numbered lists
setlocal formatoptions+=n
|