diff --git a/.config/nvim/lua/plugins/extras/editor/git/neogit.lua b/.config/nvim/lua/plugins/extras/editor/git/neogit.lua index a1eb6fb7..217e13f6 100644 --- a/.config/nvim/lua/plugins/extras/editor/git/neogit.lua +++ b/.config/nvim/lua/plugins/extras/editor/git/neogit.lua @@ -2,10 +2,12 @@ return { "NeogitOrg/neogit", dependencies = { "nvim-lua/plenary.nvim", - "sindrets/diffview.nvim", + { "sindrets/diffview.nvim", optional = true }, "nvim-telescope/telescope.nvim", }, - config = true, cmd = { "Neogit" }, - -- TODO: Need to configure this + opts = {}, + keys = { + { "gn", "Neogit", desc = "Neogit" }, + }, }