doomemacs/modules/module-demo.el

34 lines
836 B
EmacsLisp
Raw Normal View History

2016-01-29 07:05:00 -05:00
;;; module-demo.el --- for collaboration and demonstrations
;; This library offers:
;; + impatient-mode: for broadcasting my emacs session
2016-02-04 18:52:50 -05:00
;; + big-mode: for enlarged text while screencasting
;; + integration with reveal.js for presentations
;; Big-mode settings
(defconst big-mode-font (font-spec :family "Inconsolata" :size 16))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2016-01-29 07:05:00 -05:00
(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