feat(nvim): bind <leader>gg to Neogit

This commit is contained in:
inkch
2025-07-27 03:30:10 +09:00
parent 9ac3c9c270
commit c533e55e9d

View File

@@ -5,4 +5,8 @@ return {
"sindrets/diffview.nvim", -- optional - Diff integration
"nvim-telescope/telescope.nvim", -- optional
},
config = function()
vim.keymap.set("n", "<leader>gg", vim.cmd.Neogit)
end
}