summaryrefslogtreecommitdiff
path: root/lua/ben/plugins/fugitive.lua
blob: 2ec2c88c8febbc13e059f0890554c24c7ae72ee2 (plain)
1
2
3
4
5
6
7
return {
	"tpope/vim-fugitive",
	-- Only enable when in a git repo
	cond = function()
		return vim.fn.isdirectory(".git") == 1
	end,
}