starter/lua/plugins/copilot.lua

12 lines
196 B
Lua
Raw Normal View History

2023-06-23 21:27:04 +08:00
return {
2023-06-24 05:25:47 +08:00
-- { "github/copilot.vim" }
{
"zbirenbaum/copilot.lua",
cmd = "Copilot",
event = "InsertEnter",
config = function()
require("copilot").setup({})
end,
},
2023-06-23 21:27:04 +08:00
}