From f76124e06cb0cacc6ef3082449212c1141c7de8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Alvari=C3=B1o?= Date: Thu, 17 Mar 2022 23:55:53 +0100 Subject: [PATCH] Add iedit and enable narrowing --- myconfig.org | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/myconfig.org b/myconfig.org index 7f0848c..ed093e7 100644 --- a/myconfig.org +++ b/myconfig.org @@ -215,6 +215,15 @@ This file: :config (pcre-mode +1)) #+end_src + +** Enable narrowing (DANGER) + C-x n ... + #+begin_src emacs-lisp + (put 'narrow-to-defun 'disabled nil) + (put 'narrow-to-page 'disabled nil) + (put 'narrow-to-region 'disabled nil) + #+end_src + * doom-modeline A fancy modeline. Remember to execute =M-x all-the-icons-install-fonts= See [[http://sodaware.sdf.org/notes/emacs-daemon-doom-modeline-icons/][this]] for fixing icons in terminal @@ -433,6 +442,26 @@ This file: ) #+end_src +** avy + Quick navigation to words + #+begin_src emacs-lisp + ;;(use-package avy + ;; :config + ;; (avy-setup-default) + ;; :bind( + ;; ("M-g c" . avy-goto-char-2) + ;; ) + ;; ) + #+end_src + +** iedit + [[https://github.com/victorhge/iedit][iedit]]: Interactive edition of all ocurrences of X + #+begin_src emacs-lisp + (use-package iedit + :bind + ("C-รง" . iedit-mode)) + #+end_src + * next #+begin_src emacs-lisp #+end_src