15 lines
322 B
Lua
15 lines
322 B
Lua
return {
|
|
"hrsh7th/nvim-cmp",
|
|
event = "InsertEnter",
|
|
dependencies = {
|
|
"onsails/lspkind.nvim",
|
|
"hrsh7th/cmp-nvim-lsp",
|
|
"hrsh7th/cmp-buffer",
|
|
"hrsh7th/cmp-path",
|
|
{ "L3MON4D3/LuaSnip", build = "make install_jsregexp" },
|
|
"saadparwaiz1/cmp_luasnip",
|
|
},
|
|
config = function()
|
|
require "custom.completion"
|
|
end,
|
|
}
|