diff --git a/lua/plugins.lua b/lua/plugins.lua index d5f7949..c2f0956 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -330,16 +330,24 @@ local plugins = { dependencies = { "nvim-lua/plenary.nvim", -- required "nvim-telescope/telescope.nvim", -- optional - "sindrets/diffview.nvim", -- optional "ibhagwan/fzf-lua", -- optional }, - opts = { - sections = { - untracked = { - folded = true, + config = function() + require("neogit").setup({ + sections = { + untracked = { + folded = true, + } + }, + mappings = { + status = { + ["S"] = "Stage", + [""] = "Stage", + [""] = "Stage", + } } - } - } + }) + end }, { "RRethy/vim-illuminate",