Add gitsigns and vim-fugitive to neovim

This commit is contained in:
Gene Liverman 2024-06-07 14:44:17 -04:00
parent 9075dae487
commit 04f2d7627d

View file

@ -0,0 +1,15 @@
return {
{
"lewis6991/gitsigns.nvim",
config = function()
require("gitsigns").setup({
current_line_blame = true,
})
vim.keymap.set("n", "<leader gp", ":Gitsigns preview_hunk<CR>", {})
end,
},
{
"tpope/vim-fugitive",
},
}