lazyvim/lua/plugins/copilot.lua
kjuulh a86c163288
feat: with nullls
Signed-off-by: kjuulh <contact@kjuulh.io>
2023-06-07 23:37:23 +02:00

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,
}