Write modules + defuns
This commit is contained in:
parent
b998f4ab08
commit
3472a1631f
31 changed files with 1418 additions and 32 deletions
16
modules/module-php.el
Normal file
16
modules/module-php.el
Normal file
|
@ -0,0 +1,16 @@
|
|||
;;; module-php.el
|
||||
|
||||
(use-package php-mode
|
||||
:mode "\\.\\(php\\|inc\\)$"
|
||||
:init
|
||||
(setq php-template-compatibility nil)
|
||||
:config
|
||||
(require 'php-extras)
|
||||
(add-company-backend! php-mode '(php-extras-company))
|
||||
|
||||
;; TODO Tie into emr
|
||||
(require 'php-refactor-mode)
|
||||
(add-hook! php-mode '(turn-on-eldoc-mode emr-initialize php-refactor-mode)))
|
||||
|
||||
(provide 'module-php)
|
||||
;;; module-php.el ends here
|
Loading…
Add table
Add a link
Reference in a new issue