fix(ui): set border=none for backdrop window

This commit is contained in:
Jon Huhn 2025-10-15 19:56:53 -05:00
commit 67ce392988

View file

@ -151,6 +151,7 @@ function M:mount()
style = "minimal", style = "minimal",
focusable = false, focusable = false,
zindex = self.opts.zindex - 1, zindex = self.opts.zindex - 1,
border = "none",
}) })
vim.api.nvim_set_hl(0, "LazyBackdrop", { bg = "#000000", default = true }) vim.api.nvim_set_hl(0, "LazyBackdrop", { bg = "#000000", default = true })
Util.wo(self.backdrop_win, "winhighlight", "Normal:LazyBackdrop") Util.wo(self.backdrop_win, "winhighlight", "Normal:LazyBackdrop")