mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
18 lines
344 B
Lua
18 lines
344 B
Lua
local border = {
|
|
prompt = { " " },
|
|
results = { " " },
|
|
preview = { " " },
|
|
}
|
|
|
|
return {
|
|
border = border,
|
|
dropdown = {
|
|
previewer = false,
|
|
prompt_title = false,
|
|
layout_strategy = "horizontal",
|
|
layout_config = {
|
|
prompt_position = "top",
|
|
},
|
|
borderchars = border,
|
|
}
|
|
}
|