We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9467201 commit cee16e3Copy full SHA for cee16e3
lua/rakshit/plugins/git-blame.lua
@@ -8,8 +8,8 @@ return {
8
-- or lazy = false. One of both options will work.
9
opts = function()
10
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 })
+ 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 })
13
vim.api.nvim_set_hl(0, "CursorLineBlame", hl_combined)
14
return {
15
enabled = true,
0 commit comments