diff --git a/.config/nvim/lua/plugins/extras/coding/cmp/git.lua b/.config/nvim/lua/plugins/extras/coding/cmp/git.lua deleted file mode 100644 index 87d98ecf..00000000 --- a/.config/nvim/lua/plugins/extras/coding/cmp/git.lua +++ /dev/null @@ -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, -}