Change theme to nord and recolor PDFs
This commit is contained in:
14
+org.el
14
+org.el
@@ -1,17 +1,15 @@
|
||||
;;; ~/.doom.d/+org.el -*- lexical-binding: t; -*-
|
||||
;; Org mode configuration
|
||||
;;
|
||||
;; Change Org TODO keywords
|
||||
;; Change TODO keywords
|
||||
(setq org-todo-keywords '((sequence "TODO" "NEXT" "WAITING" "INACTIVE" "|" "DONE" "CANCELLED")))
|
||||
;; Rice Org elements
|
||||
;; Rice elements
|
||||
(setq org-todo-keyword-faces '(("INACTIVE" . "grey") ("NEXT" . "turquoise") ("WAITING" . warning))
|
||||
org-ellipsis " ▼ "
|
||||
org-bullets-bullet-list '("◉" "⁖" "○" "‣"))
|
||||
;; Cycle through Org header visibility and disable completion
|
||||
;; Cycle through header visibility
|
||||
(after! evil-org
|
||||
(remove-hook 'org-tab-first-hook #'+org-cycle-only-current-subtree-h)
|
||||
(remove-hook 'org-mode-hook #'auto-fill-mode))
|
||||
;; Turn off line numbers in Org and Markdown
|
||||
(remove-hook 'org-tab-first-hook #'+org-cycle-only-current-subtree-h))
|
||||
(add-hook 'org-mode-hook (lambda () (display-line-numbers-mode -1)))
|
||||
;; Tailor Org super agenda
|
||||
(use-package! org-super-agenda
|
||||
@@ -28,3 +26,7 @@
|
||||
:config
|
||||
(org-super-agenda-mode)
|
||||
)
|
||||
;; Show inline images by default
|
||||
(setq org-startup-with-inline-images t)
|
||||
;; Add timestamp to DONE task
|
||||
(setq org-log-done 'time)
|
||||
|
||||
Reference in New Issue
Block a user