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

13 lines
181 B
Lua
Raw Normal View History

2025-03-12 09:26:09 -05:00
return {
'zbirenbaum/copilot-cmp',
config = function()
require('copilot_cmp').setup()
end,
opts = {
filetypes = {
['.'] = false,
go = true,
},
2025-03-12 09:26:09 -05:00
},
2025-01-29 13:29:10 -06:00