aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2025-03-07 10:44:01 -0800
committerGravatar Tom Willemse2025-04-07 14:20:55 -0700
commitdfea43f00f6bd212d8665bf72c540a76b189314b (patch)
tree93f760dc2922dcd1a62c36b2abab92b29d8bc84c
parentdac2186768046d1861d82b6f31085842b28b7477 (diff)
downloademacs-config-dfea43f00f6bd212d8665bf72c540a76b189314b.tar.gz
emacs-config-dfea43f00f6bd212d8665bf72c540a76b189314b.zip
oni-php: Add ‘rainbow-delimiters-mode’
-rw-r--r--oni-php/oni-php.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/oni-php/oni-php.el b/oni-php/oni-php.el
index 630e4bc..ce75ac3 100644
--- a/oni-php/oni-php.el
+++ b/oni-php/oni-php.el
@@ -4,8 +4,8 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2025.0210.125238
-;; Package-Requires: (php-mode oni-yasnippet oni-flycheck oni-company oni-hydra ggtags fic-mode company-php)
+;; Version: 2025.0307.104352
+;; Package-Requires: (php-mode oni-yasnippet oni-flycheck oni-company oni-hydra ggtags fic-mode company-php rainbow-delimiters)
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
@@ -148,8 +148,9 @@ Otherwise call FUNC with ARGS. This is meant as advice around
(add-hook 'php-mode-hook 'flycheck-mode)
(add-hook 'php-mode-hook 'ggtags-mode)
(add-hook 'php-mode-hook 'oni-php--auto-fill-mode)
-(add-hook 'php-mode-hook 'yas-minor-mode)
+(add-hook 'php-mode-hook 'rainbow-delimiters-mode)
(add-hook 'php-mode-hook 'subword-mode)
+(add-hook 'php-mode-hook 'yas-minor-mode)
(with-eval-after-load 'company
(add-to-list 'company-backends 'company-ac-php-backend))