10 lines
209 B
Lua
10 lines
209 B
Lua
-- English comments only.
|
|
|
|
local ok, dressing = pcall(require, "dressing")
|
|
if not ok then return end
|
|
|
|
dressing.setup({
|
|
input = { border = "rounded" },
|
|
select = { backend = { "telescope", "builtin" } },
|
|
})
|