16 lines
306 B
Lua
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
|