Now accepts a flat plist of all its former parameters, including new :parameters and :actions properties to increase your control over the fate of your windows. The old usage of set-popup-rule! is deprecated and may not work right! The :ui popup module has also seen a major refactor to improve efficiency and load times. Sorry! This is the last "big" change before 2.1!
15 lines
429 B
EmacsLisp
15 lines
429 B
EmacsLisp
;;; lang/plantuml/config.el -*- lexical-binding: t; -*-
|
|
|
|
(def-package! plantuml-mode
|
|
:defer t
|
|
:init
|
|
(setq plantuml-jar-path (concat doom-etc-dir "plantuml.jar")
|
|
org-plantuml-jar-path plantuml-jar-path)
|
|
:config
|
|
(set-popup-rule! "^\\*PLANTUML" :size 0.4 :select nil :ttl 0))
|
|
|
|
|
|
(def-package! flycheck-plantuml
|
|
:when (featurep! :feature syntax-checker)
|
|
:after plantuml-mode
|
|
:config (flycheck-plantuml-setup))
|