From 3d5d5ebe53d38c56e223cae5e774fcc5f026fffd Mon Sep 17 00:00:00 2001 From: eeeXun Date: Mon, 30 Oct 2023 22:25:34 +0800 Subject: [PATCH 1/2] fix: could not see text under debugPC highlight --- lua/gruvbox.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/gruvbox.lua b/lua/gruvbox.lua index ceba0735..54fef6f3 100644 --- a/lua/gruvbox.lua +++ b/lua/gruvbox.lua @@ -416,7 +416,7 @@ local function get_groups() NvimTreeGitNew = { fg = colors.neutral_yellow }, NvimTreeGitDeleted = { fg = colors.neutral_red }, NvimTreeWindowPicker = { bg = colors.aqua }, - debugPC = { bg = colors.blue }, + debugPC = { bg = colors.blue, fg = colors.bg0, reverse = config.reverse }, debugBreakpoint = { link = "GruvboxRedSign" }, StartifyBracket = { link = "GruvboxFg3" }, StartifyFile = { link = "GruvboxFg1" }, From f8d185c056860f3e2ad1ec4e17eb26c45edb70bb Mon Sep 17 00:00:00 2001 From: eeeXun Date: Wed, 1 Nov 2023 21:53:28 +0800 Subject: [PATCH 2/2] style: change debugPC bg to dark_green --- lua/gruvbox.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/gruvbox.lua b/lua/gruvbox.lua index 54fef6f3..5b5114df 100644 --- a/lua/gruvbox.lua +++ b/lua/gruvbox.lua @@ -416,7 +416,7 @@ local function get_groups() NvimTreeGitNew = { fg = colors.neutral_yellow }, NvimTreeGitDeleted = { fg = colors.neutral_red }, NvimTreeWindowPicker = { bg = colors.aqua }, - debugPC = { bg = colors.blue, fg = colors.bg0, reverse = config.reverse }, + debugPC = { bg = colors.dark_green }, debugBreakpoint = { link = "GruvboxRedSign" }, StartifyBracket = { link = "GruvboxFg3" }, StartifyFile = { link = "GruvboxFg1" },