more complex markdown (and other) formatting

This commit is contained in:
Felix Van der Jeugt 2015-11-11 00:33:57 +01:00
parent 07b33e2de3
commit fb4b21e17c
1 changed files with 7 additions and 1 deletions

View File

@ -88,7 +88,7 @@ set laststatus=2 " always show the status line
" wrap lines at 70 characters
set formatprg=par\ -w70
set formatoptions=t
set formatoptions=tcrqnlj
set textwidth=70
" indentation
@ -295,6 +295,12 @@ function MarkdownHook()
" Making and showing html
noremap <C-c> :!markdown '%:p' > '%:p:r.html'<CR><CR>
noremap <C-i> :!rifle '%:p:r.html'<CR><CR>
setlocal textwidth=0
setlocal wrapmargin=0
setlocal colorcolumn=0
setlocal wrap
setlocal linebreak
setlocal nolist
endfunction
" }}}