Add impatient-mode and puml-mode

This commit is contained in:
Henrik Lissner 2015-10-26 01:30:38 -04:00
parent 465ee1a238
commit 705f76c70c
2 changed files with 17 additions and 0 deletions

8
modules/module-collab.el Normal file
View File

@ -0,0 +1,8 @@
;;; module-collab.el
(use-package impatient-mode
:defer t
:commands httpd-start)
(provide 'module-collab)
;;; module-collab.el ends here

View File

@ -0,0 +1,9 @@
;;; module-plantuml.el
(use-package puml-mode
:mode "\\.p\\(lant\\)?uml$"
:init
(setq puml-plantuml-jar-path "/usr/local/Cellar/plantuml/8029/plantuml.8029.jar"))
(provide 'module-plantuml)
;;; module-plantuml.el ends here