-
Neovim version (nvim -v)NVIM v0.10.0-dev-1968+ge0eb4188b Terminal / multiplexertmux Describe the bugSo this is not really a bug, it is just that some highlights group seem to have changed and I can't figure out exactly which ones. So this is how windows looked for me before commit bf00df1 (in committia.vim): Reprovim.o.packpath = "/tmp/nvim/site"
local plugins = {
rose_pine = "https://github.com/rose-pine/neovim",
-- ADD OTHER PLUGINS _NECESSARY_ TO REPRODUCE THE ISSUE
}
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({
-- ADD ROSÉ PINE CONFIG THAT IS _NECESSARY_ TO REPRODUCE THE ISSUE
})
vim.cmd("colorscheme rose-pine") |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
You may want to set require("rose-pine").setup({
styles = {
transparency = true
}
}) Otherwise it should be Edit: I noticed your cursor in the top left buffer so the ones with a background might actually be |
Beta Was this translation helpful? Give feedback.
-
I’m having this issue too. I made the change suggested by @mvllow which works, but it also makes the background of context- and popup-menus such as autocompletion buffers and the right-click menu transparent. How can I avoid this? |
Beta Was this translation helpful? Give feedback.
You may want to set
transparency = true
:Otherwise it should be
Normal
or something specified by the plugin itself, which you could maybe find by tab completing:hi PluginName<tab>
.Edit: I noticed your cursor in the top left buffer so the ones with a background might actually be
NormalNC
. If you share your Rosé Pine config I can help further, but moving this to a discussion unless a bug is found :)