From 8251fd30ad6bdef2e49c62b2af2b03076c75f242 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 30 Dec 2013 05:10:28 -0800 Subject: [PATCH] Updated Customization (markdown) --- Customization.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Customization.md b/Customization.md index 78a7898..4440bbc 100644 --- a/Customization.md +++ b/Customization.md @@ -10,3 +10,18 @@ endfunction 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')] +``` \ No newline at end of file