Nvim: add new plugins, optimize old

This commit is contained in:
Robert Kmieć
2023-09-23 01:21:02 +02:00
parent 48b7bcbf4f
commit ec0ae0ee13
19 changed files with 248 additions and 78 deletions

View File

@@ -0,0 +1,15 @@
return {
"gelguy/wilder.nvim",
config = function()
local wilder = require('wilder')
wilder.setup({modes = {':', '/', '?'}})
wilder.set_option('renderer', wilder.popupmenu_renderer(
wilder.popupmenu_border_theme({
highlighter = wilder.basic_highlighter(),
min_width = '100%', -- minimum height of the popupmenu, can also be a number
min_height = '50%', -- to set a fixed height, set max_height to the same value
reverse = 0, -- if 1, shows the candidates from bottom to top
})
))
end
}