summaryrefslogtreecommitdiffstatshomepage
path: root/nvim/.config/nvim/lua/tobyvin/plugins/cmp-git.lua
blob: 44cb82fd3a0c5c3c83fc8a564966461d67f26576 (plain)
1
2
3
4
5
6
7
local status_ok, cmp_git = pcall(require, "cmp_git")
if not status_ok then
	vim.notify("Failed to load module 'cmp_git'", vim.log.levels.ERROR)
	return
end

cmp_git.setup()