removed github copilot related plugins

This commit is contained in:
aminnairi
2023-11-28 22:25:52 +01:00
parent 78a1e5b09a
commit ad74d5e36b
+4 -4
View File
@@ -29,9 +29,9 @@ return {
["<CR>"] = cmp.mapping.confirm({ select = true }), ["<CR>"] = cmp.mapping.confirm({ select = true }),
}), }),
sources = cmp.config.sources({ sources = cmp.config.sources({
{ name = "nvim_lsp" }, { name = "nvim_lsp", group_index = 2 },
{ name = "luasnip" }, { name = "luasnip", group_index = 2 },
{ name = "path" }, { name = "path", group_index = 2 },
}, { }, {
{ name = "buffer" }, { name = "buffer" },
}), }),
@@ -40,7 +40,7 @@ return {
-- Set configuration for specific filetype. -- Set configuration for specific filetype.
cmp.setup.filetype("gitcommit", { cmp.setup.filetype("gitcommit", {
sources = cmp.config.sources({ sources = cmp.config.sources({
{ name = "git" }, -- You can specify the `git` source if [you were installed it](https://github.com/petertriho/cmp-git). { name = "git" }, -- You can specify the `git` source if [you were installed it](https://github.com/petertriho/cmp-git).
}, { }, {
{ name = "buffer" }, { name = "buffer" },
}), }),