You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm somewhat new to the neovim world, but after some work this morning I got cody working with Lunarvim. In case anyone else wants to do that, they need to put this in their ~/.config/lvim/config.lua file:
lvim.plugins= {
{
"sourcegraph/sg.nvim",
dependencies= { "nvim-lua/plenary.nvim" },
-- If you have a recent version of lazy.nvim, you don't need to add this!build="nvim -l build/init.lua",
},
}
require("sg").setup { }
-- Add cody to the list of sourceslvim.builtin.cmp.sources= {
{ name="cody" },
unpack(lvim.builtin.cmp.sources) -- Add the existing sources after the new one
}```
The text was updated successfully, but these errors were encountered:
I'm somewhat new to the neovim world, but after some work this morning I got cody working with Lunarvim. In case anyone else wants to do that, they need to put this in their
~/.config/lvim/config.lua
file:The text was updated successfully, but these errors were encountered: