nvim-config/lua/configs/gitsigns.lua
2024-03-19 17:47:26 -07:00

16 lines
306 B
Lua

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