Neovim/lua/plugins/dressing.lua

23 lines
654 B
Lua
Raw Normal View History

2024-05-12 17:38:26 +00:00
return {
{
"stevearc/dressing.nvim",
2024-05-24 16:42:20 +00:00
opts = function()
local options = require('options')
return {
input = {
title_pos = "center",
border = options.ui.border,
relative = 'editor',
win_options = {
winhighlight =
'NormalFloat:Normal,FloatTitle:TelescopePromptBorder,FloatBorder:TelescopePromptBorder'
}
},
select = {
backend = { "telescope" }
}
}
end
2024-05-12 17:38:26 +00:00
},
}