From ad7f0c59e97b0685298cde075f9fbdb0a3aef497 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 30 Dec 2013 05:01:15 -0800 Subject: [PATCH] Created Customization (markdown) --- Customization.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Customization.md diff --git a/Customization.md b/Customization.md new file mode 100644 index 0000000..22dc926 --- /dev/null +++ b/Customization.md @@ -0,0 +1,14 @@ +# Customization + +## Disabling plugins + +### MiniBufExpl + +```vim +function! s:goyo_before() + MBEClose + wincmd w +endfunction + +let g:goyo_callbacks = [function('s:goyo_before')] +```