nvim-config/lua/configs/gitsigns.lua

16 lines
306 B
Lua
Raw Permalink 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 = '' },
2025-01-18 01:12:49 +00:00
delete = { text = '' },
topdelete = { text = '' },
2024-03-20 00:47:26 +00:00
changedelete = { text = '' },
},
attach_to_untracked = true,
})
end
return config