-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit_ov-highlight.el
29 lines (24 loc) · 1004 Bytes
/
init_ov-highlight.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
;;; init_ov-highlight.el --- Persistent overlay highlighting with local variables
;; ==============================================================================
;; OV-Highlight Set Up
;; ==============================================================================
;; Written by Jeff Russell
;; Updated: 2020-04-29 1639
;; jpowellrussell.com
;; ------------------------------------------------------------------------------
;;; Commentary:
;; Uses file local variables to set persistent overlay highlights, so it ought
;; to play nicely with Org mode, or at least that's the hope. Otherwise I'll
;; have to do some trickery to make font lock ignore text properties
;;; Code:
(use-package ov-highlight
:straight (ov-highlight :type git :host github
:repo "jkitchin/ov-highlight")
:defer t
:bind
("C-c C-H" . ov-highlight-read)
:config
(ov-highlight-make "read" '(:foreground "OliveDrab1"))
)
(provide 'init_ov-highlight)
;;; init_ov-highlight.el ends here