makeit.nvim icon indicating copy to clipboard operation
makeit.nvim copied to clipboard

E492: Not an editor command: MakeitOpen

Open danielyaba opened this issue 1 year ago • 1 comments

Hi,

I'm getting this error on all the plugin's commands

Also verified the plugin loaded successfully by Lazy

Regards, Daniel Y.

danielyaba avatar Nov 14 '24 15:11 danielyaba

@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
  }

GoldfishPi avatar Jan 03 '25 19:01 GoldfishPi