From cee16e33521a67ca7d932658b4e0ef98be7e0780 Mon Sep 17 00:00:00 2001 From: Rakshit Sinha Date: Thu, 19 Dec 2024 13:29:27 -0800 Subject: [PATCH] Updated the git-blame highlight from comment (gray) to question (bluish) --- lua/rakshit/plugins/git-blame.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/rakshit/plugins/git-blame.lua b/lua/rakshit/plugins/git-blame.lua index d9b152e1..9fa2ee0c 100644 --- a/lua/rakshit/plugins/git-blame.lua +++ b/lua/rakshit/plugins/git-blame.lua @@ -8,8 +8,8 @@ return { -- or lazy = false. One of both options will work. opts = function() local hl_cursor_line = vim.api.nvim_get_hl(0, { name = "CursorLine" }) - local hl_comment = vim.api.nvim_get_hl(0, { name = "Comment" }) - local hl_combined = vim.tbl_extend("force", hl_comment, { bg = hl_cursor_line.bg }) + local hl_question = vim.api.nvim_get_hl(0, { name = "Question" }) + local hl_combined = vim.tbl_extend("force", hl_question, { bg = hl_cursor_line.bg }) vim.api.nvim_set_hl(0, "CursorLineBlame", hl_combined) return { enabled = true,