gruber-darker.nvim icon indicating copy to clipboard operation
gruber-darker.nvim copied to clipboard

opts doesn't work as config option in lazy

Open ayoubelmhamdi opened this issue 5 months ago • 0 comments

something is wrong when i use opt in lazy.nvim

{
  "blazkowolf/gruber-darker.nvim",
  opts = {
    bold = false,
    italic = {
      strings = false,
    },
  },
}

but the:

{
  "blazkowolf/gruber-darker.nvim",
  config = function()
      require('gruber-darker').setup({
        "blazkowolf/gruber-darker.nvim",
        opts = {
          bold = false,
          italic = {
            strings = false,
          },
        },
      })
  end,
}

ayoubelmhamdi avatar Feb 03 '24 15:02 ayoubelmhamdi