1
0

Add wilder for nvim command line prompts

This commit is contained in:
2025-08-31 21:15:48 +01:00
parent ec490310b0
commit b8ee9dcbf3
2 changed files with 16 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
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
}
}