diff options
| author | Raul Benencia <id@rbenencia.name> | 2023-01-25 07:42:35 -0800 | 
|---|---|---|
| committer | Raul Benencia <id@rbenencia.name> | 2023-01-25 07:42:35 -0800 | 
| commit | d459cb733ee1fd9a6b51e83056959768cc2e14f6 (patch) | |
| tree | a7950ed85b54e7ecd9f16b3780c998f2759a9d83 /.emacs.local.d/modes | |
| parent | 4c30ebdfeacc91731102ac10c6a3a7b5069b18c2 (diff) | |
emacs: use org-modern
Diffstat (limited to '.emacs.local.d/modes')
| -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) | 
