-- Git related plugins return { { "lewis6991/gitsigns.nvim", opts = {}, }, { "akinsho/git-conflict.nvim", commit = "2957f74", config = function() require("git-conflict").setup({ default_mappings = { ours = "co", theirs = "ct", none = "c0", both = "cb", next = "cn", prev = "cp", }, }) end, }, { "tpope/vim-fugitive", config = function () local map = require("helpers.keys").map map("n", "ga", "Git add %", "Stage the current file") map("n", "gb", "Git blame", "Show the blame") end } }