Updated Customization (markdown)

Junegunn Choi
2013-12-30 05:10:28 -08:00
parent 6735a04617
commit 8251fd30ad

@@ -10,3 +10,18 @@ endfunction
let g:goyo_callbacks = [function('s:goyo_before')] let g:goyo_callbacks = [function('s:goyo_before')]
``` ```
### lightline.vim
```vim
function! g:goyo_before()
call lightline#disable()
set statusline=
endfunction
function! g:goyo_after()
call lightline#enable()
endfunction
let g:goyo_callbacks = [function('g:goyo_before'), function('g:goyo_after')]
```