danth/stylix

neovim: theming is incompatible with lazy.nvim

Opened this issue · 2 comments

#496 causes issues when neovim is configured through lazy.nvim. This is because lazy disables loadplugins by default (see folke/lazy.nvim#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.

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