1
0

fix wilder.lua

This commit is contained in:
2025-08-31 21:43:45 +01:00
parent 088414bb57
commit e0c4b22efe

View File

@@ -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,
},
}