You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched the existing issues of plugins related to this issue
Neovim version (nvim -v)
v0.9.5
Operating system/version
MacOS 13.6.6
Describe the bug
With notermguicolors, the new Lazy window backdrop distorts the colors and makes it unclear that it's a backdrop.
Steps To Reproduce
Run :Lazy with notermguicolors and a colorscheme that uses cterm colors, like "pablo".
Expected Behavior
I would expect this feature to be disabled when notermguicolors is set, because blending the colors isn't straightforward when users use cterm colors 0-15 as their primary colors.
Repro
-- DO NOT change the paths and don't remove the colorschemelocalroot=vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .reprofor_, nameinipairs({ "config", "data", "state", "cache" }) dovim.env[("XDG_%s_HOME"):format(name:upper())] =root.."/" ..nameend-- bootstrap lazylocallazypath=root.."/plugins/lazy.nvim"ifnotvim.loop.fs_stat(lazypath) thenvim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, })
endvim.opt.runtimepath:prepend(lazypath)
require("lazy").setup({}, {
root=root.."/plugins",
})
vim.o.termguicolors=falsevim.cmd.colorscheme("pablo")
The text was updated successfully, but these errors were encountered:
Did you check docs and existing issues?
Neovim version (nvim -v)
v0.9.5
Operating system/version
MacOS 13.6.6
Describe the bug
With
notermguicolors
, the new Lazy window backdrop distorts the colors and makes it unclear that it's a backdrop.Steps To Reproduce
Run
:Lazy
withnotermguicolors
and a colorscheme that uses cterm colors, like "pablo".Expected Behavior
I would expect this feature to be disabled when
notermguicolors
is set, because blending the colors isn't straightforward when users use cterm colors 0-15 as their primary colors.Repro
The text was updated successfully, but these errors were encountered: