mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
23 lines
498 B
Lua
23 lines
498 B
Lua
return {
|
|
'stevearc/dressing.nvim',
|
|
opts = {
|
|
input = {
|
|
title_pos = "center",
|
|
border = "single",
|
|
relative = "win",
|
|
},
|
|
select = {
|
|
backend = { "telescope", "builtin" },
|
|
telescope = require('telescope.themes').get_dropdown({
|
|
borderchars = {
|
|
prompt = { "─", "│", "─", "│", "┌", "┐", "┘", "└" },
|
|
results = { "─", "│", "─", "│", "├", "┤", "┘", "└" },
|
|
},
|
|
max_height = 5
|
|
}),
|
|
builtin = {
|
|
border = "single",
|
|
}
|
|
}
|
|
},
|
|
}
|