10 lines
281 B
EmacsLisp
10 lines
281 B
EmacsLisp
;; -*- lexical-binding: t; -*-
|
|
(use-package plantuml-mode
|
|
:mode (("\\.uml\\'" . plantuml-mode)
|
|
("\\.plantuml\\'" . plantuml-mode))
|
|
:custom
|
|
(plantuml-default-exec-mode 'executable)
|
|
(plantuml-executable-path (executable-find "plantuml")))
|
|
|
|
(provide 'init-plantuml)
|