aboutsummaryrefslogtreecommitdiff
path: root/common/nvim/lua/plugins/fugitive.lua
blob: 22620e32f5420d66119a4db69b3d1af7e433253d (plain)
1
2
3
4
5
6
7
8
local M = {}

function M.setup()
  -- No-op if fugitive is not installed
  return true
end

return M