home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 1acebf563f165fcc24930ac33b7614b625a8a380
parent 70a95412c56b2c6b7f5f2f6f303360209142c43f
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Mon, 29 Jun 2020 18:09:29 +0200

tools/emacs: add some skeleton to org-mode 🐙

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mtools/emacs/config/config-org.el | 15++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/tools/emacs/config/config-org.el b/tools/emacs/config/config-org.el @@ -34,8 +34,18 @@ ("C-c o r r" . org-refile) ("C-c o a" . org-agenda) ("<f12>" . org-agenda) - ("C-c o c" . org-capture)) + ("C-c o c" . org-capture) + ("C-c o i p" . vde/org-project)) :config + (define-skeleton vde/org-project + "new org-mode project" + nil + > "#+TITLE: " (skeleton-read "Title: ") \n + > "#+FILETAGS: " (skeleton-read "Tags: ") \n + > _ \n + > "#+BEGIN: clocktable :scope file :maxlevel 2 :emphasize nil :link t" \n + > "#+END:" \n + > _ \n) (setq org-agenda-files `(,org-projects-dir "~/src/home" "~/src/www/") @@ -636,6 +646,5 @@ With prefix argument, also display headlines without a TODO keyword." (org-journal-date-format "%A, %d %B %Y") (org-journal-enable-agenda-integration nil)) - - (provide 'config-org) +(provide 'config-org) ;;; config-org.el ends here