|
codecompanion intergration like did I miss some dependencies? |
Answered by
Davidyz
Apr 17, 2025
Replies: 2 comments 5 replies
|
Did you load the plugin, as in, not just require it? You will also need to install dependencies as you mentioned. |
1 reply
|
Hi, I believe the issue is that codecompanion is loaded before vectorcode in your config. Please refer to this issue that demonstrates how you can make sure vectorcode is loaded before codecompanion. |
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment



When you call
require('codecompanion').setup()or use theoptskey in lazy.nvim, make sure it's wrapped inside a function.DO NOT DO THIS:
{ "olimorris/codecompanion.nvim", opts = { -- some options here } }DO THIS:
{ "olimorris/codecompanion.nvim", opts = function() opts = {} -- put your codecompanion configs here return opts end, }If you're already doing it the correct way, please attach your full codecompanion specs so that I can help further.