added log4j-mode

This commit is contained in:
Jesús
2019-02-18 19:34:19 -05:00
parent 0b74875dae
commit 08e05e1e21
3 changed files with 18 additions and 1 deletions

16
modules/init-log4j.el Normal file
View File

@@ -0,0 +1,16 @@
;;; init-log4j.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
(use-package log4j-mode
:ensure t
:defer t
:mode ("\\.log\\'" . log4j-mode))
(provide 'init-log4j)
;; Local Variables:
;; byte-compile-warnings: (not free-vars)
;; End:
;;; init-log4j.el ends here