styles.transparency set to true should make the editor background transparent, but instead it is opaque. (styles.italic is set to false here as a control group, and it seems to be working as intended.)
Repro
vim.o.packpath = "/tmp/nvim/site"
local plugins = {
rose_pine = "https://github.com/rose-pine/neovim",
}
for name, url in pairs(plugins) do
local install_path = "/tmp/nvim/site/pack/test/start/" .. name
if vim.fn.isdirectory(install_path) == 0 then
vim.fn.system({ "git", "clone", "--depth=1", url, install_path })
end
end
require("rose-pine").setup({
styles = { transparency = true }
})
vim.cmd("colorscheme rose-pine")
Neovim version (nvim -v)
v0.10.0-dev-2042+g28c183b38c
Terminal / multiplexer
foot
Describe the bug
styles.transparency
set totrue
should make the editor background transparent, but instead it is opaque. (styles.italic
is set tofalse
here as a control group, and it seems to be working as intended.)Repro