-- Git related plugins return { { "lewis6991/gitsigns.nvim", opts = { current_line_blame = true, current_line_blame_opts = { virt_text = true, delay = 0, }, }, }, { "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 } }