nvim-config/after/plugin/gitsigns.lua

13 lines
285 B
Lua
Raw Normal View History

2023-02-09 21:22:26 -08:00
local installed, gitsigns = pcall(require, "gitsigns")
if installed then
2023-02-09 21:22:26 -08:00
gitsigns.setup({
signs = {
add = { text = "+" },
change = { text = "~" },
delete = { text = "_" },
topdelete = { text = "" },
changedelete = { text = "~" },
},
})
end