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')] +```