|
|
@ -215,6 +215,15 @@ This file:
|
|
|
|
:config
|
|
|
|
:config
|
|
|
|
(pcre-mode +1))
|
|
|
|
(pcre-mode +1))
|
|
|
|
#+end_src
|
|
|
|
#+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
|
|
|
|
* doom-modeline
|
|
|
|
A fancy modeline. Remember to execute =M-x all-the-icons-install-fonts=
|
|
|
|
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
|
|
|
|
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
|
|
|
|
#+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
|
|
|
|
* next
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
#+end_src
|
|
|
|
#+end_src
|
|
|
|