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

;;; Code:
;;----------------------------------------------------------------------------
;; EditorConfig
;;----------------------------------------------------------------------------
(use-package editorconfig
  :config
  (when (and (require 'editorconfig nil t)
             (fboundp 'editorconfig-mode))
    (editorconfig-mode 1)))

(provide 'init-editorconfig)

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