mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
23 lines
443 B
EmacsLisp
23 lines
443 B
EmacsLisp
;;; siren-plantuml.el --- jimeh's Emacs Siren: plantuml-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for plantuml-mode.
|
|
|
|
;;; Code:
|
|
|
|
(use-package plantuml-mode
|
|
:mode "\\.uml\\'"
|
|
:hook
|
|
(plantuml-mode . siren-plantuml-mode-setup)
|
|
|
|
:custom
|
|
(plantuml-default-exec-mode 'executable)
|
|
|
|
:preface
|
|
(defun siren-plantuml-mode-setup ()
|
|
(setq-local tab-width 2)))
|
|
|
|
(provide 'siren-plantuml)
|
|
;;; siren-plantuml.el ends here
|