Chore: Update May2025
This commit is contained in:
19
lua/ward/plugins/gitsigns.lua
Normal file
19
lua/ward/plugins/gitsigns.lua
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user