nvim-config/after/plugin/gitsigns.lua
Salar Rahmanian f1e4018776 lint
2023-02-09 21:22:26 -08:00

13 lines
285 B
Lua

local installed, gitsigns = pcall(require, "gitsigns")
if installed then
gitsigns.setup({
signs = {
add = { text = "+" },
change = { text = "~" },
delete = { text = "_" },
topdelete = { text = "" },
changedelete = { text = "~" },
},
})
end