diff options
author | Case Duckworth | 2021-03-31 12:47:11 -0500 |
---|---|---|
committer | Case Duckworth | 2021-03-31 12:47:11 -0500 |
commit | 4189e1c8a3d63eab3db8d1e86f1990b2d49ab696 (patch) | |
tree | 87f52b9c878bd5e32abb04c46410f165b1d44be4 | |
parent | Add plugins (diff) | |
download | emacs-4189e1c8a3d63eab3db8d1e86f1990b2d49ab696.tar.gz emacs-4189e1c8a3d63eab3db8d1e86f1990b2d49ab696.zip |
Fix typos and verbosity
-rw-r--r-- | init.el | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/init.el b/init.el index 5da5a38..7300a0d 100644 --- a/init.el +++ b/init.el | |||
@@ -418,9 +418,8 @@ call `zzz-to-char'." | |||
418 | 418 | ||
419 | ;;;; Undo-fu | 419 | ;;;; Undo-fu |
420 | (setup (:straight undo-fu) | 420 | (setup (:straight undo-fu) |
421 | (:with-map acdw/map | 421 | (:acdw/map "C-/" undo-fu-only-undo |
422 | (:bind "C-/" undo-fu-only-undo | 422 | "C-?" undo-fu-only-redo)) |
423 | "C-?" undo-fu-only-redo))) | ||
424 | 423 | ||
425 | (setup (:straight undo-fu-session) | 424 | (setup (:straight undo-fu-session) |
426 | (:option undo-fu-session-incompatible-files '("/COMMIT_EDITMSG\\'" | 425 | (:option undo-fu-session-incompatible-files '("/COMMIT_EDITMSG\\'" |
@@ -449,8 +448,7 @@ call `zzz-to-char'." | |||
449 | 448 | ||
450 | ;;;; Consult | 449 | ;;;; Consult |
451 | (setup (:straight consult) | 450 | (setup (:straight consult) |
452 | (:with-map acdw/map | 451 | (:acdw/map |
453 | (:bind-autoload | ||
454 | ;; C-c bindings (`mode-specific-map') | 452 | ;; C-c bindings (`mode-specific-map') |
455 | "C-c h" consult-history | 453 | "C-c h" consult-history |
456 | "C-c m" consult-mode-command | 454 | "C-c m" consult-mode-command |
@@ -477,7 +475,7 @@ call `zzz-to-char'." | |||
477 | ;; Other bindings | 475 | ;; Other bindings |
478 | "M-y" consult-yank-pop | 476 | "M-y" consult-yank-pop |
479 | "<f1> a" consult-apropos | 477 | "<f1> a" consult-apropos |
480 | "C-h a" consult-apropos)) | 478 | "C-h a" consult-apropos) |
481 | (autoload 'consult-register-preview "consult") | 479 | (autoload 'consult-register-preview "consult") |
482 | (:option register-preview-delay 0 | 480 | (:option register-preview-delay 0 |
483 | register-preview-function #'consult-register-preview)) | 481 | register-preview-function #'consult-register-preview)) |
@@ -559,7 +557,8 @@ call `zzz-to-char'." | |||
559 | (setup (:straight (elpher :host nil | 557 | (setup (:straight (elpher :host nil |
560 | :repo "git://thelambdalab.xyz/elpher.git")) | 558 | :repo "git://thelambdalab.xyz/elpher.git")) |
561 | (:option elpher-ipv4-always t | 559 | (:option elpher-ipv4-always t |
562 | elpher-certificate-directory (acdw/in-dir "elpher/")) | 560 | elpher-certificate-directory (acdw/in-dir "elpher/") |
561 | elpher-gemini-max-fill-width fill-column) | ||
563 | (:bind "n" elpher-next-link | 562 | (:bind "n" elpher-next-link |
564 | "p" elpher-prev-link | 563 | "p" elpher-prev-link |
565 | "o" elpher-follow-current-link | 564 | "o" elpher-follow-current-link |