fix: gitsigns now sets its highlights
This commit is contained in:
parent
d844457305
commit
5a054d703c
1 changed files with 6 additions and 6 deletions
|
@ -60,12 +60,12 @@ return {
|
||||||
config = function()
|
config = function()
|
||||||
require('gitsigns').setup { -- configure symbols and colors
|
require('gitsigns').setup { -- configure symbols and colors
|
||||||
signs = {
|
signs = {
|
||||||
add = {hl = 'GitSignsChange', text = '╎'},
|
add = { text = '╎'},
|
||||||
change = {hl = 'GitSignsChange', text = '│'},
|
change = { text = '│'},
|
||||||
delete = {hl = 'GitSignsDelete', text = '_'},
|
delete = { text = '_'},
|
||||||
topdelete = {hl = 'GitSignsDelete', text = '‾'},
|
topdelete = { text = '‾'},
|
||||||
changedelete = {hl = 'GitSignsDelete', text = '~'},
|
changedelete = { text = '~'},
|
||||||
untracked = {hl = 'GitSignsUntracked', text = '╎'},
|
untracked = { text = '╎'},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue