You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kickstart.nvim/lua/custom/plugins/copilot-cmp.lua

14 lines
326 B
Lua

return {
'zbirenbaum/copilot-cmp',
dependencies = { 'zbirenbaum/copilot.lua', 'github/copilot.vim' },
config = function()
require('copilot_cmp').setup()
local cmp = require 'cmp'
local config = cmp.get_config()
table.insert(config.sources, {
name = 'copilot',
})
cmp.setup(config)
end,
}