feat(nvim): neogit mapping

This commit is contained in:
Sergio Laín 2023-12-31 19:52:18 +01:00
parent 08ef1642e1
commit 2150b359d4
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -2,10 +2,12 @@ return {
"NeogitOrg/neogit", "NeogitOrg/neogit",
dependencies = { dependencies = {
"nvim-lua/plenary.nvim", "nvim-lua/plenary.nvim",
"sindrets/diffview.nvim", { "sindrets/diffview.nvim", optional = true },
"nvim-telescope/telescope.nvim", "nvim-telescope/telescope.nvim",
}, },
config = true,
cmd = { "Neogit" }, cmd = { "Neogit" },
-- TODO: Need to configure this opts = {},
keys = {
{ "<leader>gn", "<cmd>Neogit<cr>", desc = "Neogit" },
},
} }