You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kickstart.nvim/lua/custom/plugins/copilot.lua

35 lines
762 B
Lua

return {
{
"zbirenbaum/copilot.lua",
verylazy = true,
cmd = "Copilot",
build = ":Copilot auth",
config = function()
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 = {
{ "zbirenbaum/copilot.lua" },
{ "nvim-lua/plenary.nvim", branch = "master" }, -- for curl, log and async functions
},
build = "make tiktoken", -- Only on MacOS or Linux
opts = {},
},
{ 'AndreM222/copilot-lualine' },
}