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:
parent
836082e9ef
commit
91094ce8b2
11
autoload/SpaceVim/layers/incsearch.vim
Normal file
11
autoload/SpaceVim/layers/incsearch.vim
Normal 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
|
6
autoload/SpaceVim/layers/operator.vim
Normal file
6
autoload/SpaceVim/layers/operator.vim
Normal 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
|
Loading…
Reference in New Issue
Block a user