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