14 lines
226 B
Lua
14 lines
226 B
Lua
return {
|
|
"zbirenbaum/copilot.lua",
|
|
enabled = true,
|
|
cmd = "Copilot",
|
|
event = "InsertEnter",
|
|
config = function()
|
|
require("copilot").setup({
|
|
suggestion = {
|
|
auto_trigger = true,
|
|
}
|
|
})
|
|
end,
|
|
}
|