feat: add various plugin highlighting groups

This commit is contained in:
Kim Silkebækken 2021-12-19 21:21:35 +01:00
commit 32b906d8c0
No known key found for this signature in database
GPG key ID: EB2E24C6AA19DF0F

View file

@ -198,9 +198,9 @@ return lush(function()
Todo({ fg = hl2, gui = "bold,italic" }), -- (preferred) anything that needs extra attention; mostly the keywords TODO FIXME and XXX Todo({ fg = hl2, gui = "bold,italic" }), -- (preferred) anything that needs extra attention; mostly the keywords TODO FIXME and XXX
-- LspReferenceText { }, -- used for highlighting "text" references LspReferenceText({ gui = "underline", sp = blue }), -- used for highlighting "text" references
-- LspReferenceRead { }, -- used for highlighting "read" references LspReferenceRead({ gui = "underline", sp = s.normal }), -- used for highlighting "read" references
-- LspReferenceWrite { }, -- used for highlighting "write" references LspReferenceWrite({ gui = "underline", sp = green }), -- used for highlighting "write" references
IndentBlanklineChar({ fg = s[8] }), IndentBlanklineChar({ fg = s[8] }),
IndentBlanklineContextChar({ fg = nt }), IndentBlanklineContextChar({ fg = nt }),
@ -281,5 +281,8 @@ return lush(function()
-- TSTitle { }; -- Text that is part of a title. -- TSTitle { }; -- Text that is part of a title.
-- TSLiteral { }; -- Literal text. -- TSLiteral { }; -- Literal text.
-- TSURI { }; -- Any URI like a link or email. -- TSURI { }; -- Any URI like a link or email.
IndentBlankLineContextStart({ gui = "underline", sp = nt }),
TreesitterContext({ fg = s[3], gui = "italic" }),
} }
end) end)