From d3dbebb968db617465577869b8cc75d7ae1d4484 Mon Sep 17 00:00:00 2001 From: Cameron Date: Sun, 19 Nov 2023 20:52:02 +0100 Subject: [PATCH] Change the author color highlight --- lua/neogit/buffers/common.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/neogit/buffers/common.lua b/lua/neogit/buffers/common.lua index ec50b5ea2..72de62edb 100644 --- a/lua/neogit/buffers/common.lua +++ b/lua/neogit/buffers/common.lua @@ -158,8 +158,8 @@ M.CommitEntry = Component.new(function(commit, args) details = col.hidden(true).padding_left(8) { row(util.merge(graph, { text(" "), - text("Author: ", { highlight = "NeogitGraphAuthor" }), - text(commit.author_name), + text("Author: ", { highlight = "Comment" }), + text(commit.author_name, { highlight = "NeogitGraphAuthor" }), text(" <"), text(commit.author_email), text(">"),