20 lines
517 B
EmacsLisp
20 lines
517 B
EmacsLisp
;;; 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
|