diff --git a/nvim/.config/nvim/lua/plugins/wilder.lua b/nvim/.config/nvim/lua/plugins/wilder.lua index c8eeefe..0fbaf43 100644 --- a/nvim/.config/nvim/lua/plugins/wilder.lua +++ b/nvim/.config/nvim/lua/plugins/wilder.lua @@ -1,14 +1,42 @@ +-- return { +-- { +-- 'gelguy/wilder.nvim', +-- config = function(_) +-- local wilder = require('wilder') +-- wilder.setup({modes = {':', '/', '?'}}) +-- wilder.python_search_pipeline({ +-- pattern = wilder.python_fuzzy_pattern({ +-- start_at_boundary = 0, +-- }), +-- }) +-- end +-- } +-- } +-- + return { { - 'gelguy/wilder.nvim', - config = function(_) - local wilder = require('wilder') - wilder.setup({modes = {':', '/', '?'}}) - wilder.python_search_pipeline({ - pattern = wilder.python_fuzzy_pattern({ - start_at_boundary = 0, - }), - }) - end - } + "gelguy/wilder.nvim", + -- dependencies = { + -- { "Gerodote/fzy-lua-native_updated_gitignore_repaired_makefile", build = "make", lazy = false }, + -- { "nixprime/cpsm", dependencies = { "ctrlpvim/ctrlp.vim", lazy = false }, lazy = false, build = "bash ./install.sh" }, + -- }, + config = function(_) + local wilder = require('wilder') + wilder.setup({modes = {':', '/', '?'}}) + wilder.python_search_pipeline({ + pattern = wilder.python_fuzzy_pattern({ + start_at_boundary = 0, + }), + }) + end; + build = function() + vim.cmd([[ + let &rtp=&rtp + ]] + ) + vim.api.nvim_command "runtime! plugin/rplugin.vim" + vim.api.nvim_command ":UpdateRemotePlugins" + end, + }, }