From 7ff09ff1481b37bdb2d37b92a245309440d75f92 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 24 Oct 2016 09:48:25 +0200 Subject: [PATCH] Move nxml configuration to use-package --- init.el | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index 0235145..efa552e 100644 --- a/init.el +++ b/init.el @@ -52,9 +52,6 @@ '(inhibit-startup-screen t) '(initial-scratch-message nil) '(jekyll-directory "~/Projektek/jekyll/gergely.polonkai.eu") - '(nxml-attribute-indent 4) - '(nxml-child-indent 2) - '(nxml-outline-child-indent 4) '(package-selected-packages (quote (ace-window @@ -652,6 +649,12 @@ :config (setq alert-default-style 'notifications)) +(use-package nxml + :config + (setq nxml-attribute-indent 4 + nxml-child-indent 2 + nxml-outline-child-indent 4)) + ;; Load my own functions (load "gnu-c-header.el") (load "toggle-window-split.el")