diff options
Diffstat (limited to 'lisp/org-custom.el')
| -rw-r--r-- | lisp/org-custom.el | 33 | 
1 files changed, 27 insertions, 6 deletions
| diff --git a/lisp/org-custom.el b/lisp/org-custom.el index 6c6b7e4..d927a7c 100644 --- a/lisp/org-custom.el +++ b/lisp/org-custom.el @@ -26,11 +26,32 @@       `(org-document-title ((t (,@headline ,@variable-tuple :height 1.3 :weight bold)))))) -  (use-package org-bullets -    :ensure t -    :config -    (org-bullets-mode 1) -    ) +  ;; (use-package org-bullets +  ;;   :ensure t +  ;;   :config +  ;;   (org-bullets-mode 1) +  ;;   ) + + (use-package org-modern +   :ensure t +   :config +   (global-org-modern-mode)) + +  (setq org-ellipsis "…") +  (set-face-attribute 'org-ellipsis nil :inherit 'default :box nil) + +  (setq +   ;; Edit settings +   org-auto-align-tags nil +   org-tags-column 0 +   org-catch-invisible-edits 'show-and-error +   org-special-ctrl-a/e t +   org-insert-heading-respect-content t + +   ;; Org styling, hide markup etc. +   org-hide-emphasis-markers t +   org-pretty-entities t +   org-agenda-tags-column 0)    (org-indent-mode 1)    (visual-line-mode 1)) @@ -85,7 +106,7 @@        '(("d" "default" entry           "* %?"           :target (file+head "%<%Y-%m-%d>.org" -                            "#+title: %<%Y-%m-%d> 📰 \n#+filetags: :dailies: \n\n* Tasks 🎯\n\n* Notes 📁\n\n")))) +                            "#+title: %<%Y-%m-%d> 📰 \n#+filetags: :dailies: \n\n[[file:%(format-time-string \"%Y-%m-%d\" (time-subtract (current-time) (days-to-time 1))).org][← Previous Day]]\n\n* Tasks 🎯\n\n* Notes 📁\n\n"))))    (setq org-roam-capture-templates          '(("d" "default" plain             "%?" | 
