Make border style configurable

This commit is contained in:
FollieHiyuki
2022-02-08 18:02:24 +07:00
parent 0347928385
commit 01be703f33
2 changed files with 3 additions and 2 deletions

View File

@@ -170,7 +170,7 @@ local function show_preview()
bufpos = { 0, 0 },
row = offsets[1],
col = offsets[2],
border = "single",
border = config.options.border,
})
setup_preview_buf()
else
@@ -196,7 +196,7 @@ local function show_hover()
bufpos = { 0, 0 },
row = offsets[1] + height + 2,
col = offsets[2],
border = "single",
border = config.options.border,
})
setup_hover_buf()
else