summaryrefslogtreecommitdiffstatshomepage
path: root/nvim/.config/nvim/lua/tobyvin/plugins/cmp-git.lua
blob: 2877ef18a4a124fb547dd01cc7586842afcd2e2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
local M = {}

M.setup = function()
	local status_ok, cmp_git = pcall(require, "cmp_git")
	if not status_ok then
		vim.notify("Failed to load module 'cmp_git'", "error")
		return
	end

	cmp_git.setup()
end

return M