-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.dir-locals.el
38 lines (32 loc) · 1.64 KB
/
.dir-locals.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
30
31
32
33
34
35
36
37
38
(
(org . (
;; Set custom org-mode headline tags
(setq org-todo-keywords '(
(type "Vi-TODO"
"Dharsh-TODO"
"ASK-Trey"
"Vi-CURRENT(!)"
"Dharsh-CURRENT(!)"
"|"
"Vi-Owner(!)"
"Dharsh-Owner(!)")
)
)
;; Set colors for headline tags
(setq org-todo-keyword-faces
'(
;; Todo Items
("Vi-TODO" . (:foreground "white" :background "blue" ) )
("Dharsh-TODO" . (:foreground "black" :background "yellow" ) )
("ASK-Trey" . (:foreground "red" :weight bold ) )
;; In-progress Items
("Vi-CURRENT" . (:foreground "blue" :background "black" :weight bold ) )
("Dharsh-CURRENT" . (:foreground "blue" :background "black" :weight bold ) )
;; Finished items that are owned by
("Vi-Owner" . (:foreground "Green" :weight bold ) )
("Dharsh-Owner" . (:foreground "Green" :weight bold ) )
)
)
)
)
)