This commit is contained in:
2025-06-17 22:33:09 +08:00
parent 956b146cb2
commit 0bde25e91d
28 changed files with 858 additions and 40 deletions

19
lua/plug/ext_git.lua Normal file
View File

@ -0,0 +1,19 @@
return {
{
"lewis6991/gitsigns.nvim",
event = "VeryLazy",
opts = {
current_line_blame = true,
current_line_blame_opts = {
virt_text = true,
virt_text_pos = "right_align",
delay = 1000,
ignore_whitespace = false,
},
},
config = function(_, opts)
require("gitsigns").setup(opts)
end,
},
}