From 8be5781e414e5ef4959133cfd06a3eb7a12bdcb4 Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Sun, 29 Nov 2020 09:01:41 -0500 Subject: [PATCH] Added my SpaceVim bootstrap --- .SpaceVim.d/autoload/myspacevim.vim | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .SpaceVim.d/autoload/myspacevim.vim diff --git a/.SpaceVim.d/autoload/myspacevim.vim b/.SpaceVim.d/autoload/myspacevim.vim new file mode 100644 index 0000000..032b139 --- /dev/null +++ b/.SpaceVim.d/autoload/myspacevim.vim @@ -0,0 +1,17 @@ +function! myspacevim#before() abort + set clipboard=unnamedplus + #inoremap + #inoremap + + #call SpaceVim#custom#SPCGroupName(['b'], '+MyCustom') + #call SpaceVim#custom#SPC('nore', ['b', '['], 'sbprevious', 1) + #call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 1) +endfunction + +function! myspacevim#after() abort + set clipboard=unnamedplus + #inoremap + #inoremap + call SpaceVim#custom#SPC('nore', ['b', '['], 'sbprevious', 1) + call SpaceVim#custom#SPC('nore', ['b', ']'], 'sbnext', 1) +endfunction