Added apache-mode

This commit is contained in:
Jesús
2019-01-31 18:09:54 -05:00
parent 7a1c4a38c3
commit 28e9695a24
3 changed files with 22 additions and 1 deletions

20
modules/init-apache.el Normal file
View File

@@ -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