mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
15 lines
272 B
Lua
15 lines
272 B
Lua
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",
|
|
},
|
|
}
|