You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using { "amarakon/nvim-cmp-fonts", opts = {} } leads to the following error message:
Failed to run `config` for nvim-cmp-fonts
.../Local/nvim-data/lazy/lazy.nvim/lua/lazy/core/loader.lua:355: attempt to call field 'setup' (a nil value)
# stacktrace:
- AppData\Local\nvim\init.lua:106
The text was updated successfully, but these errors were encountered:
Sorry for the late response. I actually switched to lazy.nvim from packer and I can provide an explanation.
I think the reason it is giving that error is because of the opts = {}. What that does is it attempts to call require("nvim-cmp-fonts").setup(), thus the error attempt to call field 'setup' (a nil value). You are not supposed to do that for nvim-cmp source plugins. What you should instead do is something like this:
using
{ "amarakon/nvim-cmp-fonts", opts = {} }
leads to the following error message:The text was updated successfully, but these errors were encountered: