forked from nvim-orgmode/orgmode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic highlights to agenda view.
- Loading branch information
1 parent
a2722cd
commit 83ba614
Showing
4 changed files
with
41 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
syn match OrgTodo /\<TODO\>/ | ||
syn match OrgNext /\<NEXT\>/ | ||
syn match OrgDone /\<DONE\>/ | ||
|
||
syn match OrgAgendaDay /^\w\+\s\d\+\s\w\+\s\d\d\d\d$/ | ||
|
||
" TODO - Add better defaults | ||
hi default link OrgTodo Red | ||
hi default link OrgNext Blue | ||
hi default link OrgDone Green | ||
|
||
hi default link OrgAgendaDay Statement | ||
hi default link OrgAgendaToday Identifier | ||
|
||
hi default link OrgAgendaDeadline Red | ||
hi default link OrgAgendaSchedule Green | ||
|
||
hi OrgBold gui=bold |