diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-21 00:58:09 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-21 00:58:09 -0400 |
commit | d24519f99e754d225190fad7bc6dc88c744b97de (patch) | |
tree | 8c73bc71f9dec811471e98eca4887f0ef3e8d48b /init.el | |
parent | Setup `paredit` for Lisp modes (diff) | |
download | mmosmacs-d24519f99e754d225190fad7bc6dc88c744b97de.tar.gz mmosmacs-d24519f99e754d225190fad7bc6dc88c744b97de.tar.bz2 mmosmacs-d24519f99e754d225190fad7bc6dc88c744b97de.zip |
Use `paredit-mode` in `ielm` buffers
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -819,7 +819,7 @@ | |||
819 | ;; Structured editing of S-expr data | 819 | ;; Structured editing of S-expr data |
820 | (use-package paredit | 820 | (use-package paredit |
821 | :straight t | 821 | :straight t |
822 | :hook (emacs-lisp-mode . paredit-mode)) | 822 | :hook ((emacs-lisp-mode ielm-mode) . paredit-mode)) |
823 | 823 | ||
824 | 824 | ||
825 | 825 | ||