diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/init-apache.el | 20 |
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 |