From 7ec1ef59ef1611c8a147db7fbeab131d94a30595 Mon Sep 17 00:00:00 2001 From: joachimschmidt557 Date: Sat, 16 Jul 2022 12:16:28 +0200 Subject: [PATCH] emacs: add editorconfig --- emacs.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/emacs.el b/emacs.el index 9859898..8dbcf79 100644 --- a/emacs.el +++ b/emacs.el @@ -81,6 +81,7 @@ (straight-use-package 'ace-window) ;; (straight-use-package 'projectile) (straight-use-package 'osm) +(straight-use-package 'editorconfig) ;; Emacs Configuration (setq inhibit-splash-screen t) @@ -178,3 +179,8 @@ :custom (aw-keys '(?h ?i ?e ?a ?t ?r ?n ?s)) :bind (("C-x o" . ace-window))) + +(use-package editorconfig + :config + (editorconfig-mode 1) + :delight)