about summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2020-11-24 08:32:49 -0600
committerCase Duckworth2020-11-24 08:32:49 -0600
commit8dd120770ddda837e29b77d1d696289ca44dad78 (patch)
treea68e48991171934864fa8690d939328c8fb449f8 /config.org
parentSet fonts in a hook (diff)
downloademacs-8dd120770ddda837e29b77d1d696289ca44dad78.tar.gz
emacs-8dd120770ddda837e29b77d1d696289ca44dad78.zip
Change search bindings to use regexp by default
Diffstat (limited to 'config.org')
-rw-r--r--config.org5
1 files changed, 5 insertions, 0 deletions
diff --git a/config.org b/config.org index 6c7ad20..1947a85 100644 --- a/config.org +++ b/config.org
@@ -374,6 +374,11 @@ See [[https://emacs.stackexchange.com/questions/12351/when-to-call-find-font-if-
374 (use-package ctrlf 374 (use-package ctrlf
375 :custom 375 :custom
376 (ctrlf-show-match-count-at-eol nil) 376 (ctrlf-show-match-count-at-eol nil)
377 :bind
378 ("C-s" . ctrlf-forward-regexp)
379 ("C-r" . ctrlf-backward-regexp)
380 ("C-M-s" . ctrlf-forward-literal)
381 ("C-M-r" . ctrlf-backward-literal)
377 :config 382 :config
378 (ctrlf-mode 1)) 383 (ctrlf-mode 1))
379#+end_src 384#+end_src