From 5df6d0b178d33224e923c2c162b588d842f1510d Mon Sep 17 00:00:00 2001 From: Simon McLean Date: Wed, 13 Nov 2024 15:10:46 +0000 Subject: [PATCH] add winblend ui option --- lua/lazy/core/config.lua | 2 ++ lua/lazy/view/float.lua | 3 +++ 2 files changed, 5 insertions(+) diff --git a/lua/lazy/core/config.lua b/lua/lazy/core/config.lua index 8f56d52..31e90e7 100644 --- a/lua/lazy/core/config.lua +++ b/lua/lazy/core/config.lua @@ -89,6 +89,8 @@ M.defaults = { border = "none", -- The backdrop opacity. 0 is fully opaque, 100 is fully transparent. 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_pos = "center", ---@type "center" | "left" | "right" -- Show pills on top of the Lazy window diff --git a/lua/lazy/view/float.lua b/lua/lazy/view/float.lua index 4131d72..d9f90d3 100644 --- a/lua/lazy/view/float.lua +++ b/lua/lazy/view/float.lua @@ -16,6 +16,7 @@ local ViewConfig = require("lazy.view.config") ---@field ft? string ---@field noautocmd? boolean ---@field backdrop? float +---@field winblend? number ---@class LazyFloat ---@field buf number @@ -55,6 +56,7 @@ function M:init(opts) style = "minimal", border = Config.options.ui.border or "none", backdrop = Config.options.ui.backdrop or 60, + winblend = Config.options.ui.winblend or 0, zindex = 50, }, opts or {}) @@ -184,6 +186,7 @@ function M:mount() Util.wo(self.win, "wrap", true) Util.wo(self.win, "winhighlight", "Normal:LazyNormal") Util.wo(self.win, "colorcolumn", "") + Util.wo(self.win, "winblend", self.opts.winblend) end opts()