1
0
Fork 0

More org-mode config

This commit is contained in:
Jeremy Kaplan 2017-11-08 10:31:34 -08:00 committed by Jeremy Kaplan
commit 4a0acc5e5e

View file

@ -26,6 +26,7 @@
'(menu-bar-mode nil) '(menu-bar-mode nil)
'(mouse-wheel-mode nil) '(mouse-wheel-mode nil)
'(nlinum-format "%d ") '(nlinum-format "%d ")
'(org-adapt-indentation nil)
'(package-selected-packages '(package-selected-packages
(quote (quote
(lua-mode evil-org org go-mode helm-projectile helm nlinum coffee-mode yaml-mode web-mode typescript-mode scala-mode php-mode markdown-mode js2-mode haskell-mode evil-surround evil-leader evil autopair))) (lua-mode evil-org org go-mode helm-projectile helm nlinum coffee-mode yaml-mode web-mode typescript-mode scala-mode php-mode markdown-mode js2-mode haskell-mode evil-surround evil-leader evil autopair)))
@ -186,10 +187,12 @@
(setq org-startup-folded "showeverything") (setq org-startup-folded "showeverything")
(setq org-todo-keywords (setq org-todo-keywords
'((sequence "NEW(n)" "QUALIFIED(q)" "STARTED(s)" "BLOCKED(b)" "|" "DONE(d)"))) '((sequence "NEW(n)" "QUALIFIED(q)" "STARTED(s)" "BLOCKED(b)" "|" "DONE(d)")
(sequence "TODO(t)" "|" "DONE(d)")))
(setq org-todo-keyword-faces (setq org-todo-keyword-faces
'(("NEW" . "white") '(("NEW" . "white")
("TODO" . "gray")
("QUALIFIED" . "lightblue") ("QUALIFIED" . "lightblue")
("STARTED" . "orange" ) ("STARTED" . "orange" )
("BLOCKED" . "red") ("BLOCKED" . "red")