neanias / everforest-nvim

A Lua port of the Everforest colour scheme
233 stars 15 forks source link

How to get transparent background on LazyVim distro #14

Open j0of opened 9 months ago

j0of commented 9 months ago

Hi there, I am currently using the LazyVim distro and currently trying to enable a transparent background on the theme, but I'm a bit lost at the moment. Would you be able to help me out?

This is what I've tried so far:

return {
  {
    "neanias/everforest-nvim",
    config = function()
      require("everforest").setup({
        transparent = true,
      })
    end,
  },
  {
    "LazyVim/LazyVim",
    opts = {
      colorscheme = "everforest",
    },
  },
}
neanias commented 9 months ago

Hi there! The transparency configuration option is transparent_background_level which can be any of 0, 1, 2. You'll need to replace transparent = true with transparent_background_level = 2 and if that's too much, try with 1.

There's more info in the toggled section under the configuration heading in the README