" from https://thinca.hatenablog.com/entry/20110903/1314982646 if &buftype ==# 'help' finish endif setlocal list tabstop=8 shiftwidth=8 softtabstop=8 setlocal noexpandtab textwidth=78 colorcolumn=+1 conceallevel=0 function! s:set_highlight(group) abort for group in ['helpBar', 'helpBacktick', 'helpStar', 'helpIgnore'] execute 'hi link' group a:group endfor endfunction call s:set_highlight('Special') augroup vimrc_help autocmd! autocmd BufUnload \ : call set_highlight('Ignore') \ | autocmd! vimrc_help autocmd ColorScheme * call set_highlight('Special') augroup END nnoremap q nnoremap inoremap = repeat('=', &textwidth) inoremap - repeat('-', &textwidth) nnoremap [Toggle]c call toggle_conceal() function! s:toggle_conceal() abort if &conceallevel == 0 setlocal conceallevel=3 else setlocal conceallevel=0 endif setlocal conceallevel? endfunction