aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-08-26 23:03:20 -0700
committerGravatar Tom Willemse2026-08-26 23:04:25 -0700
commit8ece91b82dbe80b91994d9530e076a09c7e55861 (patch)
tree45e2548541b3bfb1a92de865081f2fb9752d59bd
parent3b04af119e76e0c84ad686d8d4b2760ccc58e4fc (diff)
downloadnew-dotfiles-8ece91b82dbe80b91994d9530e076a09c7e55861.tar.gz
new-dotfiles-8ece91b82dbe80b91994d9530e076a09c7e55861.zip
Emacs: Automatically load ‘phel-mode’ for .phel filesHEADmain
-rw-r--r--emacs/.emacs.d/init.org9
1 files changed, 9 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index a098684..71ca9cc 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -987,3 +987,12 @@ This package automatically adjusts your window sized to follow the golden ratio,
#+end_src
This configuration adds advice after the =ace-window= command to make sure that switching with it still properly configures the window sizes.
+
+* Phel
+
+Phel is a Clojure-inspired lisp that compiles to PHP.
+
+#+begin_src emacs-lisp
+ (use-package phel-mode
+ :mode (rx ".phel" eos))
+#+end_src