nvim-config/lua/plugins/gitsigns.lua

16 lines
322 B
Lua
Raw Normal View History

2023-02-10 21:20:55 -08:00
return {
"lewis6991/gitsigns.nvim",
lazy = false,
config = function()
require("gitsigns").setup({
signs = {
add = { text = "+" },
change = { text = "~" },
delete = { text = "_" },
topdelete = { text = "" },
changedelete = { text = "~" },
},
})
end,
}