Hey,
I have set the transparency level to 2, but I still couldn't get the which-key popup transparent.

This is my configuration
local everforest = {
"neanias/everforest-nvim",
version = false,
lazy = false,
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
require("everforest").setup({
transparent_background_level = 2,
background = "hard",
italics = true,
})
vim.cmd([[colorscheme everforest]])
end,
}
and this is my which-key configuration
local which_key = {
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 500
end,
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
},
}
The plugin's solid work, thanks
Hey,
I have set the transparency level to 2, but I still couldn't get the which-key popup transparent.
This is my configuration
and this is my which-key configuration
The plugin's solid work, thanks