mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- Split large modules into smaller parts (e.g. siren-text-manipulation) - Organize modules into high level groups: - completion - core - editor - languages - linting - misc - navigation - projects - spelling - text-editing - version-control - windows - workspaces
26 lines
585 B
EmacsLisp
26 lines
585 B
EmacsLisp
;;; siren-plantuml.el --- jimeh's Emacs Siren: plantuml-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for plantuml-mode.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-highlight-indentation)
|
|
|
|
(use-package plantuml-mode
|
|
:mode "\\.uml\\'"
|
|
:hook
|
|
(plantuml-mode . siren-plantuml-mode-setup)
|
|
|
|
:init
|
|
(defun siren-plantuml-mode-setup ()
|
|
(setq tab-width 2
|
|
plantuml-jar-path "/usr/local/opt/plantuml/libexec/plantuml.jar")
|
|
|
|
(highlight-indentation-set-offset 2)
|
|
(highlight-indentation-current-column-mode)))
|
|
|
|
(provide 'siren-plantuml)
|
|
;;; siren-plantuml.el ends here
|