Skip to content

Commit cee16e3

Browse files
author
Rakshit Sinha
committed
Updated the git-blame highlight from comment (gray) to question (bluish)
1 parent 9467201 commit cee16e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/rakshit/plugins/git-blame.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ return {
88
-- or lazy = false. One of both options will work.
99
opts = function()
1010
local hl_cursor_line = vim.api.nvim_get_hl(0, { name = "CursorLine" })
11-
local hl_comment = vim.api.nvim_get_hl(0, { name = "Comment" })
12-
local hl_combined = vim.tbl_extend("force", hl_comment, { bg = hl_cursor_line.bg })
11+
local hl_question = vim.api.nvim_get_hl(0, { name = "Question" })
12+
local hl_combined = vim.tbl_extend("force", hl_question, { bg = hl_cursor_line.bg })
1313
vim.api.nvim_set_hl(0, "CursorLineBlame", hl_combined)
1414
return {
1515
enabled = true,

0 commit comments

Comments
 (0)