Added tool editorconfig

This commit is contained in:
Jesús 2018-08-25 23:12:42 -05:00
parent 9a17b1ed69
commit f18582dfd2
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
3 changed files with 10 additions and 1 deletions

View File

@ -11,7 +11,7 @@
'(anzu-search-threshold 1000) '(anzu-search-threshold 1000)
'(package-selected-packages '(package-selected-packages
(quote (quote
(whitespace-cleanup-mode rainbow-mode scss-mode sass-mode less-css-mode ac-php smarty-mode php-mode pkgbuild-mode markdown-mode flycheck anzu sml-modeline smart-mode-line-powerline-theme smart-mode-line nlinum sublime-themes)))) (editorconfig whitespace-cleanup-mode rainbow-mode scss-mode sass-mode less-css-mode ac-php smarty-mode php-mode pkgbuild-mode markdown-mode flycheck anzu sml-modeline smart-mode-line-powerline-theme smart-mode-line nlinum sublime-themes))))
(custom-set-faces (custom-set-faces
;; custom-set-faces was added by Custom. ;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful. ;; If you edit it by hand, you could mess it up, so be careful.

View File

@ -37,6 +37,7 @@
;; Tools ;; Tools
(require 'init-flycheck) (require 'init-flycheck)
(require 'init-whitespace) (require 'init-whitespace)
(require 'init-editorconfig)
;; Languages ;; Languages
(require 'init-ccc) (require 'init-ccc)
(require 'init-markdown) (require 'init-markdown)

View File

@ -0,0 +1,8 @@
;;----------------------------------------------------------------------------
;; EditorConfig
;;----------------------------------------------------------------------------
(require-package 'editorconfig)
(editorconfig-mode 1)
(provide 'init-editorconfig)