From 9c273af4a629914d2dfb54a301f6177041816e21 Mon Sep 17 00:00:00 2001 From: tiyn Date: Tue, 24 Mar 2026 02:52:30 +0100 Subject: [PATCH] added support for file-renamer.nvim --- lua/tccs/theme.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lua/tccs/theme.lua b/lua/tccs/theme.lua index 86331e2..c41f536 100644 --- a/lua/tccs/theme.lua +++ b/lua/tccs/theme.lua @@ -323,6 +323,11 @@ theme.set_highlights = function(opts) hl(0, "ResolveTheirsSection", { bg = c.modified_bg }) hl(0, "ResolveAncestorSection", { bg = c.removed_bg }) + -- file-renamer.nvim + hl(0, "RenameComment", { fg = c.comment, italic = opts.italic_comments }) + hl(0, "RenameDirectory", { fg = c.constant }) + hl(0, "RenameFile", { fg = c.func }) + end return theme