feat(nvim): improve tag highlights for orgmode

This commit is contained in:
Price Hiller 2024-02-29 07:12:47 -06:00
parent 9b1c7691ee
commit 94e6041783
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
2 changed files with 6 additions and 0 deletions

View File

@ -52,3 +52,7 @@
(timestamp
("[" @org.timestamp.inactive.delimiter)
("]" @org.timestamp.inactive.delimiter)))
; Improved list delimiter highlights
(tag_list ":" @org.tag.delimiter)
(tag) @org.tag.body

View File

@ -241,6 +241,8 @@ return {
{ "@markup.list.indeterminate", { fg = colors.carpYellow } },
{ "@markup.list.unchecked", { fg = colors.crystalBlue } },
{ "@markup.verbatim", { fg = colors.springGreen, bg = colors.sumiInk0 } },
{ "@org.tag.body", { fg = colors.waveAqua2, italic = true } },
{ "@org.tag.delimiter", { link = "@punctuation.delimiter" } },
{ "@org.verbatim", { link = "@markup.verbatim" } },
{
"@org.verbatim.delimiter",