Files
nvim/lua/plugins/cmp.lua
2024-08-01 15:34:24 +02:00

20 lines
419 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',
},
config = function()
require 'completion'
end,
},
}