From 5a054d703c0e52b4673833980c8b1947a5b84d38 Mon Sep 17 00:00:00 2001 From: alemi Date: Wed, 3 Jul 2024 02:34:19 +0200 Subject: [PATCH] fix: gitsigns now sets its highlights --- lua/plugins.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lua/plugins.lua b/lua/plugins.lua index b3651c2..6a65cda 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -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