aboutsummaryrefslogtreecommitdiff
path: root/config/nvim/lua/plugins/git.lua
blob: 963f7f9a741af77b607c08287c6cff1e28323604 (plain)
1
2
3
4
5
6
7
8
9
10
11
local status, git = pcall(require, "git")
if (not status) then return end

git.setup({
  keymaps = {
    -- Open blame window
    blame = "<Leader>gb",
    -- Open file/folder in git repository
    browse = "<Leader>go",
  }
})