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