Customizable paragraph boundary

Close #20
This commit is contained in:
Junegunn Choi
2015-07-30 23:35:53 +09:00
parent 9f57165a38
commit 487515a1de
2 changed files with 11 additions and 3 deletions

View File

@@ -48,6 +48,12 @@ let g:limelight_default_coefficient = 0.7
" Number of preceding/following paragraphs to include (default: 0)
let g:limelight_paragraph_span = 1
" Beginning/end of paragraph
" When there's no empty line between the paragraphs
" and each paragraph starts with indentation
let g:limelight_bop = '^\s'
let g:limelight_eop = '\ze\n^\s'
```
Goyo.vim integration