allow to use movements to define paragraphs

This commit is contained in:
Tobias Bengfort
2019-02-22 17:16:14 +01:00
parent 6ad865e527
commit 5013b7b3ba
2 changed files with 16 additions and 2 deletions

View File

@@ -55,6 +55,11 @@ let g:limelight_paragraph_span = 1
let g:limelight_bop = '^\s'
let g:limelight_eop = '\ze\n^\s'
" Alternatively, you can use movements to define paragraphs
let g:limelight_mode = 'movement'
let g:limelight_bop = '{'
let g:limelight_eop = '}'
" Highlighting priority (default: 10)
" Set it to -1 not to overrule hlsearch
let g:limelight_priority = -1