added support for file-renamer.nvim

This commit is contained in:
2026-03-24 02:52:30 +01:00
parent 181bc2d41e
commit 9c273af4a6

View File

@@ -323,6 +323,11 @@ theme.set_highlights = function(opts)
hl(0, "ResolveTheirsSection", { bg = c.modified_bg }) hl(0, "ResolveTheirsSection", { bg = c.modified_bg })
hl(0, "ResolveAncestorSection", { bg = c.removed_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 end
return theme return theme