diff --git a/lisp/init-local.template.el b/lisp/init-local.template.el new file mode 100644 index 0000000..e2c938a --- /dev/null +++ b/lisp/init-local.template.el @@ -0,0 +1,17 @@ +;;; init-local.template.el --- Template for customizations in init-local.el -*- lexical-binding: t -*- +;;; Commentary: +;;; Code: + +(defun rb-init-misc-local () + (setq org-agenda-files (directory-files-recursively "/home/rego/devel/scratches/" "^\\(\\w\\|[-_.]\\)+\\.org$")) + (push `("d" "diary" entry (file+olp+datetree "diary_file") + (function (lambda () ""))) + org-capture-templates) + (setq org-default-notes-file "refile.org") + ) + +(add-hook 'elpaca-after-init-hook 'rb-init-misc-local) + +(provide 'init-local.template) + +;;; init-local.template.el ends here