diff --git a/custom/orgmode.el b/custom/orgmode.el index 8bc3757..f586cb5 100644 --- a/custom/orgmode.el +++ b/custom/orgmode.el @@ -1,3 +1,4 @@ +(setq load-path (cons "/usr/local/share/emacs/site-lisp" load-path)) (require 'org) (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) (define-key global-map "\C-cl" 'org-store-link) @@ -13,3 +14,19 @@ (setq org-default-notes-file "~/.org/on-the-fly-notes.org") (define-key global-map "\C-cc" 'org-capture) (define-key global-map "\C-cr" 'remember) + +(define-skeleton org-presentation-skeleton + "Inserts org directives for org buffers supposed to generate a slide-show presentation. See https://github.com/jblomo/org-html-slideshow" + "Base directory: " + "#+TAGS: slide(s) example(e) video(v) discuss(d) improve(i) fixme(f) quiz(q) exercise(x)\n" + "#+STYLE: \n" + "#+STYLE: \n" + "#+STYLE: \n" + "#+STYLE: \n\n" + "#+BEGIN_HTML\n" + "\n" + "#+END_HTML\n\n" + "# Local Variables:\n" + "# org-export-html-style-include-default: nil\n" + "# org-export-html-style-include-scripts: nil\n" + "# End:")