Updated the git-blame highlight from comment (gray) to question (bluish)
This commit is contained in:
parent
9467201766
commit
cee16e3352
@ -8,8 +8,8 @@ return {
|
|||||||
-- or lazy = false. One of both options will work.
|
-- or lazy = false. One of both options will work.
|
||||||
opts = function()
|
opts = function()
|
||||||
local hl_cursor_line = vim.api.nvim_get_hl(0, { name = "CursorLine" })
|
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_question = vim.api.nvim_get_hl(0, { name = "Question" })
|
||||||
local hl_combined = vim.tbl_extend("force", hl_comment, { bg = hl_cursor_line.bg })
|
local hl_combined = vim.tbl_extend("force", hl_question, { bg = hl_cursor_line.bg })
|
||||||
vim.api.nvim_set_hl(0, "CursorLineBlame", hl_combined)
|
vim.api.nvim_set_hl(0, "CursorLineBlame", hl_combined)
|
||||||
return {
|
return {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user