blob: fb854a7388767a1f816cf7f8c8488c27da0def07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
setlocal tabstop=2 softtabstop=0 expandtab shiftwidth=2
setlocal autoindent
" Test some wrapping on the html
setlocal textwidth=79
setlocal formatoptions+=t
" Highlight where the lines are more than 80 characters wide
setlocal colorcolumn=80
highlight ColorColumn ctermbg=LightGreen
setlocal foldmethod=indent
|