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