feat(emacs): add evil-surround config

This commit is contained in:
2025-12-17 23:09:08 +01:00
parent 71e7bdec0c
commit 42dfafd536

View File

@@ -60,6 +60,16 @@ enough for me.
:straight (:build t)) :straight (:build t))
#+end_src #+end_src
** Evil Surround
#+begin_src emacs-lisp
(use-package evil-surround
:straight (:build t)
:after evil
:config
(add-to-list 'evil-surround-pairs-alist '(?$ . ("${" . "}")))
(global-evil-surround-mode 1))
#+end_src
** Iedit ** Iedit
Iedit is a powerful text editing tool that can be used to refactor Iedit is a powerful text editing tool that can be used to refactor
code through the edition of multiple regions at once, be it in a code through the edition of multiple regions at once, be it in a