local env = require("my.helpers.env") local M = { "TimUntersberger/neogit", -- dependencies = { "plenary.nvim" }, cmd = "Neogit", enabled = env.firenvim.not_active() and env.vscode.not_active(), init = function() vim.keymap.set("n", "", "Neogit", { desc = "Open neo[g]it" }) end, config = function() require("neogit").setup() -- {{{ Disable folds inside neogit vim.api.nvim_create_autocmd("FileType", { pattern = { "NeogitStatus" }, group = vim.api.nvim_create_augroup("NeogitStatusOptions", {}), callback = function() vim.opt.foldenable = false end, }) -- }}} end, } return M