This commit is contained in:
Simon McLean 2025-03-02 12:17:08 +02:00 committed by GitHub
commit 2e641ba12d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View file

@ -89,6 +89,8 @@ M.defaults = {
border = "none", border = "none",
-- The backdrop opacity. 0 is fully opaque, 100 is fully transparent. -- The backdrop opacity. 0 is fully opaque, 100 is fully transparent.
backdrop = 60, backdrop = 60,
-- The main window opacity. 0 is fully opaque, 100 is fully transparent.
winblend = 0,
title = nil, ---@type string only works when border is not "none" title = nil, ---@type string only works when border is not "none"
title_pos = "center", ---@type "center" | "left" | "right" title_pos = "center", ---@type "center" | "left" | "right"
-- Show pills on top of the Lazy window -- Show pills on top of the Lazy window

View file

@ -16,6 +16,7 @@ local ViewConfig = require("lazy.view.config")
---@field ft? string ---@field ft? string
---@field noautocmd? boolean ---@field noautocmd? boolean
---@field backdrop? float ---@field backdrop? float
---@field winblend? number
---@class LazyFloat ---@class LazyFloat
---@field buf number ---@field buf number
@ -55,6 +56,7 @@ function M:init(opts)
style = "minimal", style = "minimal",
border = Config.options.ui.border or "none", border = Config.options.ui.border or "none",
backdrop = Config.options.ui.backdrop or 60, backdrop = Config.options.ui.backdrop or 60,
winblend = Config.options.ui.winblend or 0,
zindex = 50, zindex = 50,
}, opts or {}) }, opts or {})
@ -184,6 +186,7 @@ function M:mount()
Util.wo(self.win, "wrap", true) Util.wo(self.win, "wrap", true)
Util.wo(self.win, "winhighlight", "Normal:LazyNormal") Util.wo(self.win, "winhighlight", "Normal:LazyNormal")
Util.wo(self.win, "colorcolumn", "") Util.wo(self.win, "colorcolumn", "")
Util.wo(self.win, "winblend", self.opts.winblend)
end end
opts() opts()