emacs: add editorconfig

This commit is contained in:
joachimschmidt557 2022-07-16 12:16:28 +02:00
parent 755bf3d80d
commit 7ec1ef59ef
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5

View file

@ -81,6 +81,7 @@
(straight-use-package 'ace-window) (straight-use-package 'ace-window)
;; (straight-use-package 'projectile) ;; (straight-use-package 'projectile)
(straight-use-package 'osm) (straight-use-package 'osm)
(straight-use-package 'editorconfig)
;; Emacs Configuration ;; Emacs Configuration
(setq inhibit-splash-screen t) (setq inhibit-splash-screen t)
@ -178,3 +179,8 @@
:custom :custom
(aw-keys '(?h ?i ?e ?a ?t ?r ?n ?s)) (aw-keys '(?h ?i ?e ?a ?t ?r ?n ?s))
:bind (("C-x o" . ace-window))) :bind (("C-x o" . ace-window)))
(use-package editorconfig
:config
(editorconfig-mode 1)
:delight)