blob: 8abe28a9e866d35e922669b43f0ebfd2412956d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
setlocal syntax=markdown
" Spellcheck in markdown (automatic to english)
setlocal spelllang=en
setlocal spell
" Textwidth for automatic wrap `gq` is formatting operation
setlocal textwidth=79
setlocal formatoptions+=t
" Highlight where the lines are more than 80 characters wide
setlocal colorcolumn=80
highlight ColorColumn ctermbg=LightGreen
|