init-xml.el 502 B

12345678910111213141516171819
  1. ;;; init-xml.el --- XML Configuration File -*- lexical-binding: t -*-
  2. ;;; Commentary:
  3. ;; Based on prelude-xml.el
  4. ;;; Code:
  5. (use-feature nxml-mode
  6. :config
  7. (push '("<\\?xml" . nxml-mode) magic-mode-alist)
  8. (add-to-list 'auto-mode-alist '("\\.pom\\'" . nxml-mode))
  9. :custom
  10. (nxml-child-indent 4)
  11. (nxml-attribute-indent 4)
  12. (nxml-auto-insert-xml-declaration-flag nil)
  13. (nxml-bind-meta-tab-to-complete-flag t)
  14. (nxml-slash-auto-complete-flag t))
  15. (provide 'init-xml)
  16. ;;; init-xml.el ends here