aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-01-31 18:09:54 -0500
committerJesús <heckyel@hyperbola.info>2019-01-31 18:09:54 -0500
commit28e9695a24ecb8d2e5f048c18c3ad768d3bee639 (patch)
tree796e5de73dba05466fb333cfd7e2ad0781acf3f3 /modules
parent7a1c4a38c3608aeda5992adb30e7cd9bd39bc36a (diff)
downloademacs-personal-28e9695a24ecb8d2e5f048c18c3ad768d3bee639.tar.lz
emacs-personal-28e9695a24ecb8d2e5f048c18c3ad768d3bee639.tar.xz
emacs-personal-28e9695a24ecb8d2e5f048c18c3ad768d3bee639.zip
Added apache-mode
Diffstat (limited to 'modules')
-rw-r--r--modules/init-apache.el20
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/init-apache.el b/modules/init-apache.el
new file mode 100644
index 0000000..c022cd3
--- /dev/null
+++ b/modules/init-apache.el
@@ -0,0 +1,20 @@
+;;; init-apache.el --- .Emacs Configuration -*- lexical-binding: t -*-
+;;; Commentary:
+;;
+
+;;; Code:
+;;---------------------------
+;; Apache Mode
+;;---------------------------
+(use-package apache-mode
+ :mode
+ ("\\.htaccess\\'" . apache-mode)
+ ("httpd\\.conf\\'" . apache-mode)
+ ("srm\\.conf\\'" . apache-mode)
+ ("access\\.conf\\'" . apache-mode)
+ ("sites-\\(available\\|enabled\\)/" . apache-mode))
+
+(provide 'init-apache)
+
+;; End:
+;;; init-apache.el ends here