summaryrefslogtreecommitdiff
path: root/lua/ben/plugins/flog.lua
blob: 81b0c0d585651951112c00fdc5fc2d84185dfc99 (plain)
1
2
3
4
5
6
7
8
9
10
11
return {
	"rbong/vim-flog",
	-- Only enable if git is installed
	cond = function()
		return vim.fn.executable("git") == 1
	end,
	dependencies = { "tpope/vim-fugitive" },
	keys = {
		{ "<leader>gg", "<cmd>Flogsplit<cr>" }, -- G.it G.raph
	},
}