Add iedit and enable narrowing

main
Sergio Alvariño 2 years ago
parent 00c019ddaf
commit f76124e06c

@ -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

Loading…
Cancel
Save