6 lines
209 B
EmacsLisp
6 lines
209 B
EmacsLisp
(setq editorconfig-packages '(editorconfig))
|
|
|
|
(defun editorconfig/init-editorconfig ()
|
|
(use-package editorconfig
|
|
:defer t
|
|
:init (add-to-list 'auto-mode-alist '("\\.editorconfig" . conf-unix-mode))))
|