Grey out Headlines Tagged with ARCHIVE #964
-
I was wondering if there was a way to grey out (don't color) headlines containing the tag |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There is no option to do that automatically, but you can add some code to your configuration:
; inherits: org
(section (headline (tag_list) @_tags (#match? @_tags ":ARCHIVE:") (#set! priority "150"))) @comment
With this, your archived headlines should be highlighted in the same way as comments. You can change the last |
Beta Was this translation helpful? Give feedback.
There is no option to do that automatically, but you can add some code to your configuration:
after/queries/org/highlights.scm
file in your configurationWith this, your archived headlines should be highlighted in the same way as comments. You can change the last
@comment
part to any hl group you desire.