Add php-mode again but not to replace php-ts-mode.

This is only needed on org-mode for Syntax Highlighting.
This commit is contained in:
KJ 2024-09-07 11:06:05 -04:00
parent 7134c41dfc
commit 4752f03dfc
1 changed files with 5 additions and 0 deletions

View File

@ -14,6 +14,11 @@
:mode "\\.php\\'"
:ensure nil)
;; Requerido por org-mode para el Syntax Highlight
(use-package php-mode
:defer t
:ensure t)
(use-package php-doc-block
:after php-ts-mode
:bind ("C-c d b" . php-doc-block)