nvim: plugins: Drop wilder

This commit is contained in:
Sanchayan Maity 2022-01-07 13:36:13 +05:30
parent 0928a6e37e
commit 5a270db645
2 changed files with 0 additions and 30 deletions

View File

@ -1,29 +0,0 @@
call wilder#setup({
\ 'modes' : ['/', '?', ':'],
\ 'next_key' : '<Down>',
\ 'previous_key' : '<Up>',
\ 'accept_key' : '<Right>',
\ 'reject_key' : '<Left>',
\ 'enable_cmdline_enter' : 0,
\ })
call wilder#set_option('pipeline', [
\ wilder#branch(
\ wilder#python_file_finder_pipeline({
\ 'file_command' : ['fd', '-tf'],
\ 'dir_command' : ['fd', '-td'],
\ 'filters' : ['fuzzy_filter', 'difflib_sorter'],
\ }),
\ wilder#cmdline_pipeline({
\ 'fuzzy' : 1,
\ 'set_pcre2_pattern' : has('nvim'),
\ }),
\ wilder#python_search_pipeline({
\ 'pattern': 'fuzzy',
\ }),
\ ),
\ ])
call wilder#set_option('renderer', wilder#popupmenu_renderer({
\ 'highlighter': wilder#basic_highlighter(),
\ }))

View File

@ -122,7 +122,6 @@ local init = function ()
'chentau/marks.nvim',
}
use 'andymass/vim-matchup'
use 'gelguy/wilder.nvim'
end
return require('packer').startup(init)