mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
27 lines
483 B
EmacsLisp
27 lines
483 B
EmacsLisp
;;; siren-xml.el --- jimeh's Emacs Siren: XML editing configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for XML editing.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-prog-mode)
|
|
|
|
(use-package nxml-mode
|
|
:straight (:type built-in)
|
|
:defer t
|
|
:hook (nxml-mode . siren-xml-setup)
|
|
|
|
:custom
|
|
(nxml-attribute-indent 2)
|
|
(nxml-child-indent 2)
|
|
|
|
:preface
|
|
(defun siren-xml-setup ()
|
|
(run-hooks 'prog-mode-hook)
|
|
(setq-local tab-width 2)))
|
|
|
|
(provide 'siren-xml)
|
|
;;; siren-xml.el ends here
|