mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
15 lines
299 B
Lua
15 lines
299 B
Lua
return {
|
|
{
|
|
"lewis6991/gitsigns.nvim",
|
|
keys = {
|
|
-- Override LazyVim Git Blame popup with inline toggle
|
|
{
|
|
"<leader>tb",
|
|
function()
|
|
require("gitsigns").toggle_current_line_blame()
|
|
end,
|
|
desc = "Toggle Inline Blame",
|
|
},
|
|
},
|
|
},
|
|
}
|