summaryrefslogtreecommitdiffstats
path: root/after/plugin/dressing.lua
blob: 6beb0b79c212fe670f628beb93ab33a373913175 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
local status_ok, dressing = pcall(require, "dressing")
if not status_ok then
	return
end

dressing.setup {
  input = {
    enabled = true,
    title_pos = "center",
    border = 'single',
    relative = "win"
  },
  select = {
    enabled = true,
 }
}