1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 06:10:05 +08:00

Add incsearch and operator layer

This commit is contained in:
wsdjeg 2017-02-22 22:57:53 +08:00
parent 836082e9ef
commit 91094ce8b2
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,11 @@
function! SpaceVim#layers#incsearch#plugins() abort
let plugins = []
call add(plugins, ['haya14busa/incsearch.vim', {'merged' : 0}])
call add(plugins, ['haya14busa/incsearch-fuzzy.vim', {'merged' : 0}])
call add(plugins, ['haya14busa/vim-asterisk', {'merged' : 0}])
return plugins
endfunction
function! SpaceVim#layers#incsearch#config() abort
endfunction

View File

@ -0,0 +1,6 @@
function! SpaceVim#layers#operator#plugins() abort
let plugins = []
call add(plugins, ['kana/vim-operator-user', { 'merged' : 0 }])
call add(plugins, ['haya14busa/vim-operator-flashy', { 'merged' : 0 }])
return plugins
endfunction