Move nxml configuration to use-package

This commit is contained in:
Gergely Polonkai 2016-10-24 09:48:25 +02:00
parent 7be78ae7d1
commit 7ff09ff148
1 changed files with 6 additions and 3 deletions

View File

@ -52,9 +52,6 @@
'(inhibit-startup-screen t) '(inhibit-startup-screen t)
'(initial-scratch-message nil) '(initial-scratch-message nil)
'(jekyll-directory "~/Projektek/jekyll/gergely.polonkai.eu") '(jekyll-directory "~/Projektek/jekyll/gergely.polonkai.eu")
'(nxml-attribute-indent 4)
'(nxml-child-indent 2)
'(nxml-outline-child-indent 4)
'(package-selected-packages '(package-selected-packages
(quote (quote
(ace-window (ace-window
@ -652,6 +649,12 @@
:config :config
(setq alert-default-style 'notifications)) (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 my own functions
(load "gnu-c-header.el") (load "gnu-c-header.el")
(load "toggle-window-split.el") (load "toggle-window-split.el")