diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-21 00:27:51 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-21 00:27:51 -0400 |
commit | eb9832301553878a7181ce4e11b8c2cc239eaf3b (patch) | |
tree | a0d390d8a06c35dbee467e194886e2c9dec26044 | |
parent | Use `flycheck` for syntax checking (diff) | |
download | mmosmacs-eb9832301553878a7181ce4e11b8c2cc239eaf3b.tar.gz mmosmacs-eb9832301553878a7181ce4e11b8c2cc239eaf3b.tar.bz2 mmosmacs-eb9832301553878a7181ce4e11b8c2cc239eaf3b.zip |
Setup `paredit` for Lisp modes
-rw-r--r-- | init.el | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -810,6 +810,18 @@ | |||
810 | :init (global-flycheck-mode)) | 810 | :init (global-flycheck-mode)) |
811 | 811 | ||
812 | 812 | ||
813 | ;; --------------------------------- | ||
814 | ;; Lisp development | ||
815 | ;; ---------------- | ||
816 | ;; Lisp is the best | ||
817 | ;; --------------------------------- | ||
818 | |||
819 | ;; Structured editing of S-expr data | ||
820 | (use-package paredit | ||
821 | :straight t | ||
822 | :hook (emacs-lisp-mode . paredit-mode)) | ||
823 | |||
824 | |||
813 | 825 | ||
814 | 826 | ||
815 | ;; --------------------------------------------------------------------- | 827 | ;; --------------------------------------------------------------------- |