Tweaking the conceal defaults

Not seeing the concealed markup in normal mode made for a poor experience.
This commit is contained in:
Reed Esau
2014-08-24 23:54:54 -06:00
parent 74e5b86409
commit 72d617c482
2 changed files with 2 additions and 2 deletions

View File

@@ -244,7 +244,7 @@ You can change _pencils_ default settings for conceal in your `.vimrc`:
```vim
let g:pencil#conceallevel = 3 " 0=disable, 1=onechar, 2=hidechar, 3=hideall
let g:pencil#concealcursor = 'nc' " n=normal, v=visual, i=insert, c=command
let g:pencil#concealcursor = 'c' " n=normal, v=visual, i=insert, c=command
```
Terminal users: consult your terminals documentation to configure your

View File

@@ -49,7 +49,7 @@ if !exists('g:pencil#conceallevel')
en
if !exists('g:pencil#concealcursor')
" n=normal, v=visual, i=insert, c=command
let g:pencil#concealcursor = 'nc'
let g:pencil#concealcursor = 'c'
en
if !exists('g:pencil#softDetectSample')