mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-03 22:51:17 +00:00
Merge 5df6d0b178
into 6c3bda4aca
This commit is contained in:
commit
2e641ba12d
2 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue