diff options
Diffstat (limited to '')
-rw-r--r-- | after/plugin/dressing.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/after/plugin/dressing.lua b/after/plugin/dressing.lua new file mode 100644 index 0000000..6beb0b7 --- /dev/null +++ b/after/plugin/dressing.lua @@ -0,0 +1,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, + } +} |