kickstart.nvim/lua/custom/plugins/copilot-cmp.lua

20 lines
301 B
Lua
Raw Normal View History

if true then
return {}
end
2024-04-29 18:00:00 -05:00
return {
'zbirenbaum/copilot-cmp',
config = function()
require('copilot_cmp').setup()
end,
opts = {
2024-09-26 19:16:01 -05:00
<<<<<<< HEAD
filetypes = {
['.'] = false,
go = true,
},
2024-09-26 19:16:01 -05:00
=======
filetypes = { ['.'] = false },
>>>>>>> 605d213 (disable copilot)
},
2024-04-29 18:00:00 -05:00
}