fix: gitsigns now sets its highlights

This commit is contained in:
əlemi 2024-07-03 02:34:19 +02:00
parent d844457305
commit 5a054d703c
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -60,12 +60,12 @@ return {
config = function()
require('gitsigns').setup { -- configure symbols and colors
signs = {
add = {hl = 'GitSignsChange', text = ''},
change = {hl = 'GitSignsChange', text = ''},
delete = {hl = 'GitSignsDelete', text = '_'},
topdelete = {hl = 'GitSignsDelete', text = ''},
changedelete = {hl = 'GitSignsDelete', text = '~'},
untracked = {hl = 'GitSignsUntracked', text = ''},
add = { text = ''},
change = { text = ''},
delete = { text = '_'},
topdelete = { text = ''},
changedelete = { text = '~'},
untracked = { text = ''},
},
}
end