From 9a4ac2adc628532da576aa50acb43d44f76d506a Mon Sep 17 00:00:00 2001 From: iagorrr04 Date: Fri, 9 Jun 2023 23:56:28 -0300 Subject: [PATCH 1/2] fix : Gitsigns toggle_current_line_blame not showing gitblame not visible --- lua/darkplus/theme.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/darkplus/theme.lua b/lua/darkplus/theme.lua index 947e6e0..4c2f601 100644 --- a/lua/darkplus/theme.lua +++ b/lua/darkplus/theme.lua @@ -229,6 +229,7 @@ theme.set_highlights = function() hl(0, "GitSignsAdd", { fg = c.sign_add, bg = 'NONE' }) hl(0, "GitSignsChange", { fg = c.sign_change, bg = 'NONE' }) hl(0, "GitSignsDelete", { fg = c.sign_delete, bg = 'NONE' }) + hl(0, "GitSignsCurrentLineBlame", {fg = c.gray, bg = 'NONE'}) -- LSP hl(0, "DiagnosticHint", { fg = c.hint, bg = 'NONE' }) From de25e63e11f23d9e0dd7c1a20561559ed3210060 Mon Sep 17 00:00:00 2001 From: iagorrr04 Date: Sat, 10 Jun 2023 21:34:48 -0300 Subject: [PATCH 2/2] improve the color of GitSignsCurrentLineBlame --- lua/darkplus/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/darkplus/theme.lua b/lua/darkplus/theme.lua index 4c2f601..a66e569 100644 --- a/lua/darkplus/theme.lua +++ b/lua/darkplus/theme.lua @@ -229,7 +229,7 @@ theme.set_highlights = function() hl(0, "GitSignsAdd", { fg = c.sign_add, bg = 'NONE' }) hl(0, "GitSignsChange", { fg = c.sign_change, bg = 'NONE' }) hl(0, "GitSignsDelete", { fg = c.sign_delete, bg = 'NONE' }) - hl(0, "GitSignsCurrentLineBlame", {fg = c.gray, bg = 'NONE'}) + hl(0, "GitSignsCurrentLineBlame", {fg = c.dark_gray, bg = 'NONE'}) -- LSP hl(0, "DiagnosticHint", { fg = c.hint, bg = 'NONE' })