31 lines
672 B
Lua
31 lines
672 B
Lua
return {
|
|
{
|
|
"hrsh7th/nvim-cmp",
|
|
dependencies = {
|
|
{ "hrsh7th/cmp-nvim-lua" },
|
|
{ "hrsh7th/cmp-nvim-lsp-signature-help" },
|
|
{ "hrsh7th/cmp-cmdline" },
|
|
{ "hrsh7th/cmp-path" },
|
|
{ "hrsh7th/cmp-buffer" },
|
|
},
|
|
opts = function()
|
|
require "config.plugins.cmp"
|
|
end,
|
|
},
|
|
{
|
|
"hrsh7th/cmp-nvim-lsp",
|
|
dependencies = {},
|
|
config = function()
|
|
local lspconfig = require('lspconfig')
|
|
local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
|
end,
|
|
},
|
|
{
|
|
"L3MON4D3/LuaSnip",
|
|
dependencies = {
|
|
"saadparwaiz1/cmp_luasnip",
|
|
"rafamadriz/friendly-snippets"
|
|
},
|
|
opts = {}
|
|
}
|
|
}
|