stylix icon indicating copy to clipboard operation
stylix copied to clipboard

neovim: theming is incompatible with lazy.nvim

Open Jackaed opened this issue 1 year ago • 2 comments

#496 causes issues when neovim is configured through lazy.nvim. This is because lazy disables loadplugins by default (see https://github.com/folke/lazy.nvim/issues/402).

Unsure as to what the previous method of theming neovim was but it didn't have this issue. This may need to be marked as "wont fix", but probably worth having it documented.

The fix is to include:

require("lazy").setup({}, {
  performance = {
    reset_packpath = false,
  },
})

In your configuration, for anyone having the same issue.

Jackaed avatar Aug 12 '24 19:08 Jackaed

Cc: @donovanglover

trueNAHO avatar Aug 12 '24 19:08 trueNAHO

Should be possible to fix but I haven't came up with anything with the time I've spent trying to find a solution so far

donovanglover avatar Aug 21 '24 18:08 donovanglover