mirror of https://github.com/qpixel/dotfiles.git
13 lines
380 B
Lua
13 lines
380 B
Lua
local status_ok, dressing = pcall(require, "dressing")
|
|
if not status_ok then return end
|
|
dressing.setup(astronvim.user_plugin_opts("plugins.dressing", {
|
|
input = {
|
|
default_prompt = "➤ ",
|
|
winhighlight = "Normal:Normal,NormalNC:Normal",
|
|
},
|
|
select = {
|
|
backend = { "telescope", "builtin" },
|
|
builtin = { winhighlight = "Normal:Normal,NormalNC:Normal" },
|
|
},
|
|
}))
|