summaryrefslogtreecommitdiff
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-04-03 05:02:22 +0300
committerThanos Apollo <[email protected]>2024-04-03 05:02:22 +0300
commit33a19d0552e3fc4fd53a0807c21b01f2c0b4e603 (patch)
treee4c13a05ec64815a7a2f90a67def68b564e02f9c /.emacs.d/init.el
parentfe0cd7f4e354712cb9551e6d2913b0e0183072cc (diff)
emacs: Add paredit
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r--.emacs.d/init.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index d7c26d4..9a9899f 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -429,6 +429,11 @@
(lisp-mode . rainbow-delimiters-mode)
(scheme-mode . rainbow-delimiters-mode)))
+(use-package paredit
+ :ensure t
+ :config
+ (enable-paredit-mode))
+
(use-package helpful
:defer t
:bind (("C-h f" . 'helpful-callable)