aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-editorconfig.el
blob: 614dcce53fbb05b7b8cbf69734aa378d6383c4e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;;; init-editorconfig.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;

;;; Code:
;;----------------------------------------------------------------------------
;; EditorConfig
;;----------------------------------------------------------------------------
(use-package editorconfig
  :config
  (editorconfig-mode 1))

(provide 'init-editorconfig)

;; End:
;;; init-editorconfig.el ends here