2022-10-05 15:53:37 +00:00
|
|
|
;; -*- lexical-binding: t; -*-
|
|
|
|
(use-package plantuml-mode
|
|
|
|
:mode (("\\.uml\\'" . plantuml-mode)
|
2023-12-04 12:55:18 +00:00
|
|
|
("\\.plantuml\\'" . plantuml-mode)
|
|
|
|
("\\.puml\\'" . plantuml-mode))
|
2022-10-05 15:53:37 +00:00
|
|
|
:custom
|
2024-04-29 16:25:43 +00:00
|
|
|
(plantuml-default-exec-mode 'executable)
|
|
|
|
(plantuml-executable-path (executable-find "plantuml")))
|
2022-10-05 15:53:37 +00:00
|
|
|
|
|
|
|
(provide 'init-plantuml)
|