dotfiles/nvim/lua/config/gitsigns.lua
Felix Buehler 9a319d8bf7
Some checks are pending
Build / Lint Code Base (push) Waiting to run
CI / build (push) Waiting to run
nvim: init
2026-01-18 16:03:14 +01:00

9 lines
200 B
Lua

require('gitsigns').setup {
signs = {
add = { text = '+' },
change = { text = '~' },
delete = { text = '_' },
topdelete = { text = '' },
changedelete = { text = '~' },
},
}