From f6d220554ab0946a1a4efb7e3400194139a99550 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Mon, 9 Dec 2019 10:18:44 +0100 Subject: [PATCH] Emacs: editorconfig plugin --- emacs/emacs.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/emacs/emacs.el b/emacs/emacs.el index 482c0b6..c34bcf0 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -1367,6 +1367,12 @@ signature-file is the path to the file which contains the signature." (use-package haskell-mode :mode (("\\.hs\\'" . haskell-mode))) +;; editorconfig plugin +(use-package editorconfig + :ensure t + :config + (editorconfig-mode 1)) + ;; all-the-icons ;; A utility package to collect various Icon Fonts and propertized them within Emacs (use-package all-the-icons)