zbirenbaum / copilot.lua

Fully featured & enhanced replacement for copilot.vim complete with API for interacting with Github Copilot
MIT License
2.43k stars 65 forks source link

Unable to get working with LazyVim #197

Closed sdondley closed 11 months ago

sdondley commented 11 months ago

I'm not having any success getting this plugin working. The offical github/copilot plugin works.

I'm using lazy vim. Here's my config.

  {
    "zbirenbaum/copilot.lua",
    cmd = "Copilot",
    --event = "InsertEnter",
    config = function()
      require("copilot").setup()
    end,
  },

Uncommenting "event" does not help. LazyVim is showing the plugin loaded. I see no errors at all. :Copilot auth reports: [Copilot] Authenticated as GitHub user: blah

sdondley commented 11 months ago

ok, had to set "auto_trigger" to true to see it working.