Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pkgbuilds/edge/omarchy-nvim/plugin/after/transparency.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-- Neovide handles background rendering differently; skip transparency overrides
-- to avoid forcing a black background
if vim.g.neovide then
return
end

-- Make highlight groups transparent while preserving their other attributes
local function make_transparent(name)
local ok, hl = pcall(vim.api.nvim_get_hl, 0, { name = name, link = false })
Expand Down