diff options
| author | 2026-09-08 14:56:16 -0700 | |
|---|---|---|
| committer | 2026-09-08 14:56:16 -0700 | |
| commit | 435d5d4c8fba88b9bc0a23635013720bd01802e3 (patch) | |
| tree | 11913758abb95bda5a74956d55de6d10a5aa5936 | |
| parent | 0f127e54485953f4c15aa3dcdde2dcd96e3558de (diff) | |
| download | new-dotfiles-435d5d4c8fba88b9bc0a23635013720bd01802e3.tar.gz new-dotfiles-435d5d4c8fba88b9bc0a23635013720bd01802e3.zip | |
emacs: Enable paredit for some lispy modes
| -rw-r--r-- | emacs/.emacs.d/init.org | 9 |
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 |
