Problems lazy loading mini.nvim standalone plugins #213
-
Hi, I'm migration my config over to lazy.nvim and everything works as I expected except for the loading of two plugins. These are the mini.nvim align and surround standalone plugins. My setup for them is the following: local M = {
"echasnovski/mini.align",
"echasnovski/mini.surround",
}
M.config = function()
require("mini.align").setup {}
require("mini.surround").setup {}
end
return M When I run |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You need to add |
Beta Was this translation helpful? Give feedback.
You need to add
config()
to a plugin spec, not to a table of plugin specs.