mirror of https://github.com/LazyVim/starter
10 lines
191 B
Lua
10 lines
191 B
Lua
|
return {
|
||
|
"hrsh7th/cmp-nvim-lsp",
|
||
|
"hrsh7th/cmp-buffer",
|
||
|
"hrsh7th/cmp-path",
|
||
|
"saadparwaiz1/cmp_luasnip",
|
||
|
cond = function()
|
||
|
return require("lazyvim.util").has("nvim-cmp")
|
||
|
end,
|
||
|
}
|