ajs-nvim/lua/plugins/gitsigns.lua

13 lines
301 B
Lua
Raw Normal View History

return { -- Adds git related signs to the gutter, as well as utilities for managing changes
2024-03-13 15:03:28 +00:00
"lewis6991/gitsigns.nvim",
opts = {
signs = {
add = { text = "+" },
change = { text = "~" },
delete = { text = "_" },
topdelete = { text = "" },
changedelete = { text = "~" },
},
},
2024-03-13 15:03:28 +00:00
}