copilot-cmp
This commit is contained in:
parent
cbf745cb6f
commit
16494e5f05
1
init.lua
1
init.lua
|
@ -837,6 +837,7 @@ require('lazy').setup({
|
|||
{ name = 'nvim_lsp' },
|
||||
{ name = 'luasnip' },
|
||||
{ name = 'path' },
|
||||
{ name = 'copilot' }
|
||||
},
|
||||
}
|
||||
end,
|
||||
|
|
|
@ -5,10 +5,21 @@ return {
|
|||
cmd = "Copilot",
|
||||
build = ":Copilot auth",
|
||||
config = function()
|
||||
require("copilot").setup()
|
||||
require("copilot").setup({
|
||||
suggestion = { enabled = false },
|
||||
panel = { enabled = false },
|
||||
})
|
||||
end
|
||||
},
|
||||
|
||||
{
|
||||
"zbirenbaum/copilot-cmp",
|
||||
dependencies = { "zbirenbaum/copilot.lua", "hrsh7th/nvim-cmp" },
|
||||
config = function()
|
||||
require("copilot_cmp").setup()
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
"CopilotC-Nvim/CopilotChat.nvim",
|
||||
dependencies = {
|
||||
|
|
Loading…
Reference in New Issue