mirror of
https://github.com/tomru/nvim.git
synced 2026-03-03 22:47:18 +01:00
20 lines
419 B
Lua
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,
|
|
},
|
|
}
|