Changes bb

This commit is contained in:
2023-01-25 13:18:38 -05:00
parent c6f5cf58e7
commit d2a1f49903

18
init.el
View File

@@ -114,15 +114,15 @@
;;;; Web Related
(use-package web-mode
:init
(add-to-list 'auto-mode-alist '("\\.phtml\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.[agj]sp\\'" . 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 '("\\.mustache\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.djhtml\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.html?\\'" . web-mode))
)
:mode
(
".phtml$"
".html?$"
".djtml$"
".jsx?$"
".tsx?$"
)
)
(use-package php-mode)
;;;; End Web related