aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-apache.el
blob: c022cd354d6c67e95b6cf9eeb29dadfa33f7072e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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