Files
nvim/lua/plugins/cmp.lua
Thomas Ruoff c190f92ee7 add copilot
2024-09-20 07:54:46 +02:00

21 lines
451 B
Lua

return {
{
'hrsh7th/nvim-cmp',
lazy = false,
priority = 100,
dependencies = {
'onsails/lspkind.nvim',
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-path',
'hrsh7th/cmp-buffer',
{ 'L3MON4D3/LuaSnip', build = 'make install_jsregexp' },
'saadparwaiz1/cmp_luasnip',
'rafamadriz/friendly-snippets',
'zbirenbaum/copilot-cmp',
},
config = function()
require 'completion'
end,
},
}