Skyler Grey | 508060d | 2023-01-26 00:35:47 +0000 | [diff] [blame] | 1 | autocmd User GoyoEnter Limelight |
| 2 | autocmd User GoyoLeave Limelight! |
| 3 | |
| 4 | function s:loadListChars() |
| 5 | if exists("b:savedListChars") |
| 6 | let &listchars = g:savedListChars |
| 7 | endif |
| 8 | endfunction |
| 9 | |
| 10 | function s:saveListchars() |
| 11 | let g:savedListChars = &listchars |
| 12 | let &listchars="" |
| 13 | endfunction |
| 14 | |
| 15 | autocmd User GoyoLeave call s:loadListChars() |
| 16 | autocmd User GoyoEnter call s:saveListchars() |
| 17 | |
| 18 | let g:limelight_conceal_ctermfg = g:lightgrey.cterm |
| 19 | let g:limelight_conceal_guifg = g:lightgrey.gui |
| 20 | let g:limelight_paragraph_span = 1 |
| 21 | let g:limelight_priority = -1 |