diff options
Diffstat (limited to '.emacs.local.d/modes/org.el')
-rw-r--r-- | .emacs.local.d/modes/org.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.emacs.local.d/modes/org.el b/.emacs.local.d/modes/org.el index d1939f9..067c9d7 100644 --- a/.emacs.local.d/modes/org.el +++ b/.emacs.local.d/modes/org.el @@ -1,9 +1,12 @@ ;; Debian packages: elpa-org elpa-org-bullets +;; Elpa packages: org-modern (require 'org-capture) (require 'org-protocol) (require 'org-habit) (require 'org-bullets) +(require 'org-modern) + ;; -------- ;; Org mode ;; -------- @@ -568,3 +571,7 @@ as the default task." ; For tag searches ignore tasks with scheduled and deadline dates (setq org-agenda-tags-todo-honor-ignore-options t) + +;; org-modern +(add-hook 'org-mode-hook 'org-modern-mode) +(add-hook 'org-agenda-finalize-hook #'org-modern-agenda) |