diff --git a/init.el b/init.el index 67f49505b..f7bcd2703 100644 --- a/init.el +++ b/init.el @@ -103,7 +103,7 @@ ;;; Specific custom functionality lib-plugin ; plugin dev for various programs lib-tmux ; closing the rift between GUI & terminal - ;; lib-demo ; let me demonstrate... + lib-demo ; let me demonstrate... ;; lib-writing ; yes, I write papers and fiction in emacs ;; lib-crm ; emacs and or-mode based CRM ;; lib-sonicpi ; for my inner dj diff --git a/modules/lib-demo.el b/modules/lib-demo.el new file mode 100644 index 000000000..9af794acc --- /dev/null +++ b/modules/lib-demo.el @@ -0,0 +1,14 @@ +;;; lib-demo.el + +;; This library offers: +;; + impatient-mode: for broadcasting my emacs session +;; + TODO integration with reveal.js for presentations +;; + TODO "big-mode", for making emacs presentable for screencasts/share +;; + TODO quick note/time keeping for live/youtube recordings + +(use-package impatient-mode + :defer t + :commands httpd-start) + +(provide 'lib-demo) +;;; lib-demo.el ends here