This commit is contained in:
asep komarudin 2023-03-06 19:23:29 +07:00
parent 8b6a40efe8
commit ad59d61555
4 changed files with 4 additions and 4 deletions

View file

@ -0,0 +1,19 @@
return {
-- for auto complate commond mode
{
"gelguy/wilder.nvim",
event = "BufWinEnter",
config = function()
local wilder = require("wilder")
wilder.setup({ modes = { ":", "/", "?" } })
wilder.set_option(
"renderer",
wilder.popupmenu_renderer({
highlighter = wilder.basic_highlighter(),
left = { " ", wilder.popupmenu_devicons() },
right = { " ", wilder.popupmenu_scrollbar() },
})
)
end,
},
}