From 97f97a6f529bc4d6ebe5e6a94c9ec1944d5e1986 Mon Sep 17 00:00:00 2001 From: mattkae Date: Sun, 9 Jul 2023 19:37:21 -0400 Subject: Various teeny tiny improvements --- lisp/org-custom.el | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) (limited to 'lisp/org-custom.el') diff --git a/lisp/org-custom.el b/lisp/org-custom.el index 0131f1c..3c3eeb0 100644 --- a/lisp/org-custom.el +++ b/lisp/org-custom.el @@ -50,17 +50,14 @@ (setq org-src-fontify-natively t) -(use-package org-super-agenda - :ensure t) - -;; (use-package org-alert -;; :ensure t -;; :config -;; (org-alert-enable) -;; (setq org-alert-interval 3600 ; Once per hour! -;; org-alert-notify-cutoff 30 -;; org-alert-notify-after-event-cutoff 30 -;; alert-default-style 'libnotify)) +(use-package org-alert + :ensure t + :config + (org-alert-enable) + (setq org-alert-interval 3600 ; Once per hour! + org-alert-notify-cutoff 30 + org-alert-notify-after-event-cutoff 30 + alert-default-style 'libnotify)) (use-package org-roam :ensure t @@ -75,7 +72,12 @@ ("C-c n a" . org-roam-alias-add) ("C-c n c" . org-capture)) :config - (setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag))) + (setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags}" 'face 'org-tag))) + (setq org-roam-dailies-capture-templates + '(("d" "default" entry + "* %?" + :target (file+head "%<%Y-%m-%d>.org" + "#+title: %<%Y-%m-%d>\n#+filetags: :dailies:\n\n* Timeline\n\n* Notes\n\n* Questions\n\n")))) (org-roam-setup) ) -- cgit v1.2.1