mirror of
https://github.com/He4eT/desolate.nvim.git
synced 2026-05-04 17:07:23 +00:00
feat: add various plugin highlighting groups
This commit is contained in:
parent
0e9a76a4da
commit
32b906d8c0
1 changed files with 6 additions and 3 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue