Add php and yaml modes

This commit is contained in:
2022-06-13 07:49:04 +02:00
parent 809dcf1f21
commit 79be4334bd
2 changed files with 25 additions and 0 deletions

10
lisp/modes/php.el Normal file
View File

@@ -0,0 +1,10 @@
;;; php.el --- initializes PHP modes -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(use-package php-mode
:if (executable-find "php")
:defer)
(provide 'modes/php)
;;; php.el ends here