summaryrefslogtreecommitdiffstats
path: root/after/plugin/dressing.lua
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2023-11-24 21:38:31 -0500
committerSquibid <me@zacharyscheiman.com>2023-11-24 21:38:31 -0500
commitf35b13d669867209427449840ff0930a732591dc (patch)
tree3acb658ec5d01f456c49a097d56f736cbfbbfc7d /after/plugin/dressing.lua
parentebf9d2d1c4682068f5116f7efc1568ce5adf4f1b (diff)
downloadnvim-f35b13d669867209427449840ff0930a732591dc.tar.gz
nvim-f35b13d669867209427449840ff0930a732591dc.tar.bz2
nvim-f35b13d669867209427449840ff0930a732591dc.zip
more stuff too lazy to seperate
Diffstat (limited to '')
-rw-r--r--after/plugin/dressing.lua16
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,
+ }
+}