aboutsummaryrefslogtreecommitdiff
path: root/common/config/nvim/lua/plugins/git.lua
blob: 24a0871dca571f9370eb3cbd4d51c16c6cfe95b5 (plain)
1
2
3
4
5
6
7
8
local M = {}

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

return M