1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-14 02:27:58 +08:00

chore(core): use flygrep.nvim for nvim v0.10.0+

This commit is contained in:
Eric Wong 2025-02-03 21:49:47 +08:00
parent 76dbba8cee
commit d7faed1cdd
No known key found for this signature in database
GPG Key ID: 41BB7053E835C848

View File

@ -250,7 +250,7 @@ function! SpaceVim#layers#core#plugins() abort
if s:enable_winbar if s:enable_winbar
call add(plugins, [g:_spacevim_root_dir . 'bundle/winbar.nvim' , { 'merged' : 0} ]) call add(plugins, [g:_spacevim_root_dir . 'bundle/winbar.nvim' , { 'merged' : 0} ])
endif endif
if g:spacevim_flygrep_next_version if g:spacevim_flygrep_next_version && has('nvim-0.10.0')
call add(plugins, [g:_spacevim_root_dir . 'bundle/flygrep.nvim' , { 'merged' : 0} ]) call add(plugins, [g:_spacevim_root_dir . 'bundle/flygrep.nvim' , { 'merged' : 0} ])
endif endif
return plugins return plugins