From 32b906d8c0ee248d086a7f2a808a4d89fb997d9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20Silkeb=C3=A6kken?= Date: Sun, 19 Dec 2021 21:21:35 +0100 Subject: [PATCH] feat: add various plugin highlighting groups --- lua/lush_theme/monotone.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lua/lush_theme/monotone.lua b/lua/lush_theme/monotone.lua index 17ad3a4..3cfa621 100644 --- a/lua/lush_theme/monotone.lua +++ b/lua/lush_theme/monotone.lua @@ -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 - -- LspReferenceText { }, -- used for highlighting "text" references - -- LspReferenceRead { }, -- used for highlighting "read" references - -- LspReferenceWrite { }, -- used for highlighting "write" references + LspReferenceText({ gui = "underline", sp = blue }), -- used for highlighting "text" references + LspReferenceRead({ gui = "underline", sp = s.normal }), -- used for highlighting "read" references + LspReferenceWrite({ gui = "underline", sp = green }), -- used for highlighting "write" references IndentBlanklineChar({ fg = s[8] }), IndentBlanklineContextChar({ fg = nt }), @@ -281,5 +281,8 @@ return lush(function() -- TSTitle { }; -- Text that is part of a title. -- TSLiteral { }; -- Literal text. -- TSURI { }; -- Any URI like a link or email. + + IndentBlankLineContextStart({ gui = "underline", sp = nt }), + TreesitterContext({ fg = s[3], gui = "italic" }), } end)