dotfiles/dot_config/nvim/after/plugin/dressing.lua
2026-02-06 09:15:12 +01:00

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" } },
})