mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-02 14:53:38 -05:00
Add module-{demo,tmux}.el
This commit is contained in:
29
modules/module-demo.el
Normal file
29
modules/module-demo.el
Normal file
@@ -0,0 +1,29 @@
|
||||
;;; module-demo.el --- for collaboration and demonstrations
|
||||
|
||||
;; 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)
|
||||
|
||||
(use-package puml-mode
|
||||
:mode "\\.p\\(lant\\)?uml$"
|
||||
:init
|
||||
(setq puml-plantuml-jar-path "/usr/local/Cellar/plantuml/8029/plantuml.8029.jar"))
|
||||
|
||||
;;;
|
||||
|
||||
(defvar big-mode-font narf-default-font)
|
||||
|
||||
(define-minor-mode big-mode
|
||||
:init-value nil
|
||||
:lighter " BIG"
|
||||
:global t
|
||||
(narf/load-font (if big-mode big-mode-font narf-default-font)))
|
||||
|
||||
(provide 'module-demo)
|
||||
;;; module-demo.el ends here
|
Reference in New Issue
Block a user