all repos

init.lua @ 732a19d4085b051a91a129b67761c601c0be831b

my nvim config

init.lua/lua/plugins/neogit.lua(view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
return {
  "TimUntersberger/neogit",
  cmd = "Neogit",
  keys = {
    { "<leader>gg", vim.cmd.Neogit },
  },
  opts = {
    kind = "vsplit",
    disable_builtin_notifications = true,
    disable_commit_confirmation = true,
    disable_hint = true,
    signs = {
      section = { "", "" },
      item = { "", "" },
      hunk = { "", "" },
    },
  },
}