aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-log4j.el
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-02-18 19:34:19 -0500
committerJesús <heckyel@hyperbola.info>2019-02-18 19:34:19 -0500
commit08e05e1e2186df06d5228e1f45e493b2f39dfa51 (patch)
tree9008c6c531c4920288922343c3a8ba0e2ba31685 /modules/init-log4j.el
parent0b74875daefd220811f65bcfbe99b2e05708bcd1 (diff)
downloademacs-personal-08e05e1e2186df06d5228e1f45e493b2f39dfa51.tar.lz
emacs-personal-08e05e1e2186df06d5228e1f45e493b2f39dfa51.tar.xz
emacs-personal-08e05e1e2186df06d5228e1f45e493b2f39dfa51.zip
added log4j-mode
Diffstat (limited to 'modules/init-log4j.el')
-rw-r--r--modules/init-log4j.el16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/init-log4j.el b/modules/init-log4j.el
new file mode 100644
index 0000000..774e9a1
--- /dev/null
+++ b/modules/init-log4j.el
@@ -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