2017-07-08 23:05:23 +02:00
|
|
|
;;; lang/plantuml/config.el -*- lexical-binding: t; -*-
|
|
|
|
|
|
|
|
(def-package! plantuml-mode
|
2018-05-25 00:46:11 +02:00
|
|
|
:defer t
|
2018-02-14 07:40:05 -05:00
|
|
|
:init
|
2018-03-01 11:16:00 +08:00
|
|
|
(setq plantuml-jar-path (concat doom-etc-dir "plantuml.jar")
|
|
|
|
org-plantuml-jar-path plantuml-jar-path)
|
2018-02-14 07:40:05 -05:00
|
|
|
:config
|
2018-06-15 02:58:12 +02:00
|
|
|
(set-popup-rule! "^\\*PLANTUML" '((size . 0.4)) '((select) (transient . 0))))
|
2017-07-08 23:05:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
(def-package! flycheck-plantuml
|
|
|
|
:when (featurep! :feature syntax-checker)
|
|
|
|
:after plantuml-mode
|
|
|
|
:config (flycheck-plantuml-setup))
|