Is your feature request related to a problem? Please describe.
currently it's possible to get type annotation through the traditional require("plugin").setup { opts } function call, however, when using lazy.nvim, most of the config are defined in plugins.opts, in this case, type annotation in opts are not provided.,
Describe the solution you'd like
support type annotation in lazy.nvim spec, particularly in the plugins.opts field.
Did you check the docs?
Is your feature request related to a problem? Please describe.
currently it's possible to get type annotation through the traditional
require("plugin").setup { opts }
function call, however, when using lazy.nvim, most of the config are defined inplugins.opts
, in this case, type annotation in opts are not provided.,Describe the solution you'd like
support type annotation in
lazy.nvim
spec, particularly in theplugins.opts
field.Describe alternatives you've considered
use the traditional
setup
call inplugins.config
Additional context
No response