diff options
| -rw-r--r-- | emacs/init.el | 11 | 
1 files changed, 5 insertions, 6 deletions
| diff --git a/emacs/init.el b/emacs/init.el index fa57eec..f527e11 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -227,12 +227,8 @@ and when JID is not in `jabber-activity-banned'."  	(org-log-done 'time)  	(org-return-follows-link t)  	(org-agenda-files '("~/data/notes/notes.org")) -	(org-capture-templates -		`( -			("j" "Journal" entry (file+datetree "~/data/notes/notes.org") "* %?\n" :empty-lines 1) -			 -		) -	) +	(org-capture-templates `(("j" "Journal" entry (file+datetree "~/data/notes/notes.org") "* %?\n" :empty-lines 1) +	("w" "Website" entry (file+datetree "~/dates/notes/notes.org") "* %?\n%a\n" :empty-lines 1)))  	(org-agenda-tags-column t)  	(org-agenda-block-separator ?─) @@ -245,6 +241,9 @@ and when JID is not in `jabber-activity-banned'."  	:custom-face  	;;(org-ellipsis ((t (:inherit default :box nil)))) + +	:bind (("C-c c" . org-capture) +	("C-c a" . org-agenda))  )  (use-package org-modern | 
