cmp: add copilot as cmp source
This commit is contained in:
parent
1b8a4094d0
commit
75a7857913
|
@ -17,7 +17,17 @@ return {
|
||||||
dependencies = {
|
dependencies = {
|
||||||
'hrsh7th/cmp-nvim-lsp',
|
'hrsh7th/cmp-nvim-lsp',
|
||||||
'L3MON4D3/LuaSnip',
|
'L3MON4D3/LuaSnip',
|
||||||
'saadparwaiz1/cmp_luasnip'
|
'saadparwaiz1/cmp_luasnip',
|
||||||
|
|
||||||
|
{ -- copilot
|
||||||
|
'zbirenbaum/copilot.lua',
|
||||||
|
opts = { suggestion = { enabled = false }, panel = { enabled = false } }
|
||||||
|
},
|
||||||
|
|
||||||
|
{ -- copilot-cmp source
|
||||||
|
'zbirenbaum/copilot-cmp',
|
||||||
|
opts = { clear_after_cursor = true }
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
config = function()
|
config = function()
|
||||||
|
@ -63,6 +73,7 @@ return {
|
||||||
sources = {
|
sources = {
|
||||||
{ name = 'nvim_lsp' },
|
{ name = 'nvim_lsp' },
|
||||||
{ name = 'luasnip' },
|
{ name = 'luasnip' },
|
||||||
|
{ name = 'copilot' },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue