nvim-config/lua/plugins/gitsigns.lua
2023-02-10 21:20:55 -08:00

16 lines
322 B
Lua

return {
"lewis6991/gitsigns.nvim",
lazy = false,
config = function()
require("gitsigns").setup({
signs = {
add = { text = "+" },
change = { text = "~" },
delete = { text = "_" },
topdelete = { text = "" },
changedelete = { text = "~" },
},
})
end,
}