mirror of
https://github.com/gryf/.vim.git
synced 2025-12-17 19:40:29 +01:00
10 lines
256 B
VimL
10 lines
256 B
VimL
" Some common settings for all reSt files
|
|
setlocal textwidth=80
|
|
setlocal makeprg=md2html.py\ \"%\"\ \"%:p:r.html\"
|
|
setlocal spell
|
|
setlocal smartindent
|
|
setlocal autoindent
|
|
setlocal formatoptions=tcq "set VIms default
|
|
|
|
autocmd BufWritePost *.md :silent make
|