summaryrefslogtreecommitdiff
path: root/lua/ben/plugins/gitsigns.lua
blob: ef8f427792070595fb6dc35a8f894b04483d9ee6 (plain)
1
2
3
4
5
6
7
8
9
return {
	"lewis6991/gitsigns.nvim",
	-- Only enable if git is installed
	cond = function()
		return vim.fn.executable("git") == 1
	end,
	event = { "BufReadPre", "BufNewFile" },
	config = true,
}