mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
16 lines
373 B
Lua
16 lines
373 B
Lua
|
local status_ok, dressing = pcall(require, "dressing")
|
||
|
if not status_ok then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
dressing.setup({
|
||
|
input = {
|
||
|
default_prompt = "➤ ",
|
||
|
win_options = { winhighlight = "Normal:Normal,NormalNC:Normal" },
|
||
|
},
|
||
|
select = {
|
||
|
backend = { "telescope", "builtin" },
|
||
|
builtin = { win_options = { winhighlight = "Normal:Normal,NormalNC:Normal" } },
|
||
|
},
|
||
|
})
|