nvim-config/lua/configs/gitsigns.lua

16 lines
306 B
Lua
Raw Normal View History

2024-03-20 00:47:26 +00:00
local function config()
local gitsigns = require('gitsigns')
gitsigns.setup({
signs = {
add = { text = '' },
change = { text = '' },
delete = { text = '' },
topdelete = { text = '' },
changedelete = { text = '' },
},
attach_to_untracked = true,
})
end
return config