[literate] make "Searching" heading

This commit is contained in:
contrapunctus 2021-07-25 20:40:18 +05:30
parent 7d25c64eb0
commit bfbb95eaa2
1 changed files with 13 additions and 11 deletions

View File

@ -68,8 +68,6 @@ At first I decided to remap all Emacs, Boon, and Hydra bindings, but it turned o
"C-r" 'next-line
"M-c" 'ivy-previous-history-element
"M-r" 'ivy-next-history-element)
(general-def swiper-map
"C-c" 'previous-line)
(general-auto-unbind-keys t)
#+END_SRC
** user interface
@ -132,7 +130,8 @@ At first I decided to remap all Emacs, Boon, and Hydra bindings, but it turned o
(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3"))
#+END_SRC
** ag, the Silver Searcher
** Searching
*** ag, the Silver Searcher
#+BEGIN_SRC emacs-lisp
(use-package ag
:bind
@ -143,6 +142,17 @@ At first I decided to remap all Emacs, Boon, and Hydra bindings, but it turned o
#+END_SRC
*** Swiper
#+BEGIN_SRC emacs-lisp
(use-package swiper
:bind
(("C-s" . swiper)
("C-r" . swiper-backward)
:map swiper-map
("C-c" . previous-line))
:config
(setq swiper-action-recenter t))
#+END_SRC
** ido-mini
This needs to be before =boon=, or you get a "failed to define function ido-mini" error when you press the keybinding.
#+BEGIN_SRC emacs-lisp
@ -2987,14 +2997,6 @@ Create advice for =lispy-pair= - if =lispy--in-string-or-comment-p= is true, sel
#+END_SRC
**
#+BEGIN_SRC emacs-lisp
(use-package swiper
:bind
(("C-s" . swiper)
("C-r" . swiper-backward))
:config
(setq swiper-action-recenter t))
#+END_SRC
** mode line
*** powerline :disabled: