From 4752f03dfc7e903a489bd1b3483898a047da50e1 Mon Sep 17 00:00:00 2001 From: KJ Date: Sat, 7 Sep 2024 11:06:05 -0400 Subject: [PATCH] Add php-mode again but not to replace php-ts-mode. This is only needed on org-mode for Syntax Highlighting. --- configs/lang-php.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configs/lang-php.el b/configs/lang-php.el index 5212153..991ef39 100644 --- a/configs/lang-php.el +++ b/configs/lang-php.el @@ -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)