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

15 lines
218 B
Lua
Raw Normal View History

if true then
return {}
end
2024-04-29 18:00:00 -05:00
return {
'zbirenbaum/copilot.lua',
opts = {
suggestion = { enabled = false },
panel = { enabled = false },
2024-09-26 19:26:23 -05:00
filetypes = {
['.'] = false,
go = true,
},
2024-04-29 18:00:00 -05:00
},
}