[GitSigns] Add

This commit is contained in:
Admin 2025-03-31 15:18:57 +02:00
parent d85ed3b970
commit 79d26ff6f8

View File

@ -0,0 +1,18 @@
return {
-- git buffer integration
"lewis6991/gitsigns.nvim",
config = function()
require("gitsigns").setup({
count_chars = { "¹", "²", "³", "", "", "", "", "", "", ["+"] = "" },
signs = {
add = { show_count = true },
change = { show_count = true },
delete = { show_count = true },
topdelete = { show_count = true },
changedelete = { show_count = true },
untracked = { show_count = true },
},
numhl = true,
})
end,
}