🗑️ remove(nvim): cmp-git extra

merged inside lazyvim
This commit is contained in:
Sergio Laín 2024-06-08 12:38:05 +02:00
parent de5c124dc2
commit c556d64167
No known key found for this signature in database
GPG key ID: FB00AF7015FFE76B

View file

@ -1,18 +0,0 @@
local cmp = require("cmp")
return {
"hrsh7th/nvim-cmp",
dependencies = {
"petertriho/cmp-git",
opts = {},
},
opts = function(_, opts)
cmp.setup.filetype("gitcommit", {
sources = cmp.config.sources({
{ name = "git" }, -- You can specify the `git` source if [you were installed it](https://github.com/petertriho/cmp-git).
}, {
{ name = "buffer" },
}),
})
end,
}