diff --git a/after/plugin/neogit.lua b/after/plugin/neogit.lua index 8606afe..4e78d47 100644 --- a/after/plugin/neogit.lua +++ b/after/plugin/neogit.lua @@ -43,60 +43,4 @@ neogit.setup { popup = { kind = "split", }, - -- customize displayed signs - signs = { - -- { CLOSED, OPENED } - section = { ">", "v" }, - item = { ">", "v" }, - hunk = { "", "" }, - }, - integrations = { - -- Neogit only provides inline diffs. If you want a more traditional way to look at diffs, you can use `sindrets/diffview.nvim`. - -- The diffview integration enables the diff popup, which is a wrapper around `sindrets/diffview.nvim`. - -- - -- Requires you to have `sindrets/diffview.nvim` installed. - -- use { - -- 'TimUntersberger/neogit', - -- requires = { - -- 'nvim-lua/plenary.nvim', - -- 'sindrets/diffview.nvim' - -- } - -- } - -- - diffview = false - }, - -- Setting any section to `false` will make the section not render at all - sections = { - untracked = { - folded = false - }, - unstaged = { - folded = false - }, - staged = { - folded = false - }, - stashes = { - folded = true - }, - unpulled = { - folded = true - }, - unmerged = { - folded = false - }, - recent = { - folded = true - }, - }, - -- override/add mappings - mappings = { - -- modify status buffer mappings - status = { - -- Adds a mapping with "B" as key that does the "BranchPopup" command - ["B"] = "BranchPopup", - -- Removes the default mapping of "s" - ["s"] = "", - } - } }