aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-21 00:27:51 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-21 00:27:51 -0400
commiteb9832301553878a7181ce4e11b8c2cc239eaf3b (patch)
treea0d390d8a06c35dbee467e194886e2c9dec26044
parentUse `flycheck` for syntax checking (diff)
downloadmmosmacs-eb9832301553878a7181ce4e11b8c2cc239eaf3b.tar.gz
mmosmacs-eb9832301553878a7181ce4e11b8c2cc239eaf3b.tar.bz2
mmosmacs-eb9832301553878a7181ce4e11b8c2cc239eaf3b.zip
Setup `paredit` for Lisp modes
-rw-r--r--init.el12
1 files changed, 12 insertions, 0 deletions
diff --git a/init.el b/init.el
index e4b5490..0ae6e4d 100644
--- a/init.el
+++ b/init.el
@@ -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;; ---------------------------------------------------------------------