Last active
July 5, 2017 12:52
-
-
Save kaustavdm/4532700 to your computer and use it in GitHub Desktop.
Configuration for web-mode for Emacs 24 using Prelude
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Disable whitespace-mode when using web-mode | |
(add-hook 'web-mode-hook (lambda () (whitespace-mode -1))) | |
(add-to-list 'auto-mode-alist '("\\.inc$" . php-mode)) ;; - For Drupal | |
(add-to-list 'auto-mode-alist '("\\.\\(module\\|test\\|install\\|theme\\)$" . php-mode)) ;; - For Drupal | |
(add-to-list 'auto-mode-alist '("\\.phtml\\'" . web-mode)) | |
(add-to-list 'auto-mode-alist '("\\.tpl\\.php\\'" . web-mode)) | |
(add-to-list 'auto-mode-alist '("\\.blade\\.php\\'" . web-mode)) | |
(add-to-list 'auto-mode-alist '("\\.jsp\\'" . web-mode)) | |
(add-to-list 'auto-mode-alist '("\\.as[cp]x\\'" . web-mode)) | |
(add-to-list 'auto-mode-alist '("\\.erb\\'" . web-mode)) | |
(add-to-list 'auto-mode-alist '("\\.html?\\'" . web-mode)) | |
(add-to-list 'auto-mode-alist '("/\\(views\\|html\\|theme\\|templates\\)/.*\\.php\\'" . web-mode)) | |
;; Customizations | |
(setq web-mode-markup-indent-offset 4) | |
(setq web-mode-css-indent-offset 2) | |
(setq web-mode-code-indent-offset 4) | |
(setq web-mode-disable-autocompletion t) | |
(local-set-key (kbd "RET") 'newline-and-indent) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment