summary refs log tree commit diff stats
path: root/README.md
diff options
context:
space:
mode:
authorCase Duckworth2021-01-10 21:37:16 -0600
committerCase Duckworth2021-01-10 21:37:30 -0600
commitc124cb60e70ab0c0eb15d3e06e846d5019155506 (patch)
tree3a31d347cedf7e445ce0c61004ecd10e146a671a /README.md
parentAdd inf-janet-mode (diff)
downloademacs-c124cb60e70ab0c0eb15d3e06e846d5019155506.tar.gz
emacs-c124cb60e70ab0c0eb15d3e06e846d5019155506.zip
Add PHP mode
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/README.md b/README.md index f2e948c..9450ea5 100644 --- a/README.md +++ b/README.md
@@ -397,16 +397,13 @@ helper function, though, to add things to the whitelist.
397 (run-at-time (nth 1 (split-string (sunrise-sunset))) 397 (run-at-time (nth 1 (split-string (sunrise-sunset)))
398 (* 60 60 24) 398 (* 60 60 24)
399 (lambda () 399 (lambda ()
400 (sml/apply-theme 'light)
401 (modus-themes-load-operandi))) 400 (modus-themes-load-operandi)))
402 401
403 ;; sunset 402 ;; sunset
404 (run-at-time (nth 4 (split-string (sunrise-sunset))) 403 (run-at-time (nth 4 (split-string (sunrise-sunset)))
405 (* 60 60 24) 404 (* 60 60 24)
406 (lambda () 405 (lambda ()
407 (sml/apply-theme 'dark) 406 (modus-themes-load-vivendi)))
408 (modus-themes-load-vivendi)
409 (sml/setup)))
410 407
411 408
412### Fonts 409### Fonts
@@ -1044,6 +1041,13 @@ I’ve pretty much cribbed this from [recentf-remove-sudo-tramp-prefix](https://
1044 '("\\.ini\\'" . ini-mode)) 1041 '("\\.ini\\'" . ini-mode))
1045 1042
1046 1043
1044### PHP
1045
1046see also [this post by Fermin M](https://sasanidas.gitlab.io/f-site/php-development/), it looks really useful.
1047
1048 (straight-use-package 'php-mode)
1049
1050
1047# Writing 1051# Writing
1048 1052
1049 1053