Chore: Update May2025

This commit is contained in:
Ward Truyen
2025-05-04 00:34:02 +02:00
parent 30481d8b3d
commit 56c7eedc37
12 changed files with 416 additions and 15 deletions

View File

@@ -0,0 +1,19 @@
return {
"lewis6991/gitsigns.nvim",
-- event = "BufReadPre",
config = function()
require("gitsigns").setup {
signs = {
-- add = { text = "│" },
-- change = { text = "│" },
delete = { text = "_", show_count = true },
-- topdelete = { text = "‾" },
-- changedelete = { text = "~" },
-- untracked = { text = "┆" },
},
numhl = true, -- Toggle with `:Gitsigns toggle_numhl`
linehl = true, -- Toggle with `:Gitsigns toggle_linehl`
}
end,
}