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

21 lines
292 B
Lua
Raw Normal View History

if true then
return {}
2025-01-21 17:25:30 -06:00
else
return {
'zbirenbaum/copilot-cmp',
config = function()
require('copilot_cmp').setup()
end,
opts = {
filetypes = {
['.'] = false,
go = true,
},
},
2025-01-21 17:25:30 -06:00
}
end
2025-01-29 13:29:10 -06:00
return {
'https://github.com/mbbill/undotree',
}