blob: 0ac612136015e61ac54201d3f5101c3e8d5e81d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
;;; init-editorconfig.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;;----------------------------------------------------------------------------
;; EditorConfig
;;----------------------------------------------------------------------------
(use-package editorconfig
:ensure t
:config
(when (and (require 'editorconfig nil t)
(fboundp 'editorconfig-mode))
(editorconfig-mode 1)))
(provide 'init-editorconfig)
;; End:
;;; init-editorconfig.el ends here
|