makeit.nvim
makeit.nvim copied to clipboard
E492: Not an editor command: MakeitOpen
Hi,
I'm getting this error on all the plugin's commands
Also verified the plugin loaded successfully by Lazy
Regards, Daniel Y.
@danielyaba I just ran into this issue also, I think the docs are semi incomplete, using packer.nvim I had to call the setup functions and that fixed it for me.
use {
"Zeioth/makeit.nvim",
requires={"stevearc/overseer.nvim"},
config = function()
require('overseer').setup()
require("makeit").setup {}
end
}