feat(nvim): add transparency for floating UI

Set winblend and pumblend to 20 (80% opaque) for floating windows
and popup menus.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
s0wlz (Matthias Puchstein)
2026-01-01 21:34:04 +01:00
parent cb0fa9e6f1
commit a00cf1f6ff
3 changed files with 12 additions and 0 deletions

View File

@@ -32,6 +32,10 @@ function M.load()
vim.o.background = "light"
vim.g.colors_name = "apex-aeon"
-- Transparency: 80% opaque for floating UI
vim.o.winblend = 20
vim.o.pumblend = 20
local p = M.palette
local groups = {
-- CANVAS & UI -----------------------------------------------------------

View File

@@ -32,6 +32,10 @@ function M.load()
vim.o.background = "dark"
vim.g.colors_name = "apex-neon"
-- Transparency: 80% opaque for floating UI
vim.o.winblend = 20
vim.o.pumblend = 20
local p = M.palette
local groups = {
-- CANVAS & UI -----------------------------------------------------------

View File

@@ -32,6 +32,10 @@ function M.load()
vim.o.background = "{{ type }}"
vim.g.colors_name = "{{ scheme | lower | replace(' ', '-') }}"
-- Transparency: 80% opaque for floating UI
vim.o.winblend = 20
vim.o.pumblend = 20
local p = M.palette
local groups = {
-- CANVAS & UI -----------------------------------------------------------