aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-09-08 14:56:16 -0700
committerGravatar Tom Willemse2026-09-08 14:56:16 -0700
commit435d5d4c8fba88b9bc0a23635013720bd01802e3 (patch)
tree11913758abb95bda5a74956d55de6d10a5aa5936 /emacs
parent0f127e54485953f4c15aa3dcdde2dcd96e3558de (diff)
downloadnew-dotfiles-435d5d4c8fba88b9bc0a23635013720bd01802e3.tar.gz
new-dotfiles-435d5d4c8fba88b9bc0a23635013720bd01802e3.zip
emacs: Enable paredit for some lispy modes
Diffstat (limited to 'emacs')
-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 71ca9cc..9093cf6 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -996,3 +996,12 @@ Phel is a Clojure-inspired lisp that compiles to PHP.
(use-package phel-mode
:mode (rx ".phel" eos))
#+end_src
+
+* Paredit
+
+The only way to edit lispy languages. This turns Emacs into a structural editor for s-expression-based languages.
+
+#+begin_src emacs-lisp
+ (use-package paredit
+ :hook (emacs-lisp-mode fennel-mode clojure-mode lisp-mode))
+#+end_src