summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2021-04-20 14:24:03 -0500
committerCase Duckworth2021-04-20 14:24:03 -0500
commitec64f8bdff4600565b398c5219bab3ac311ce511 (patch)
tree30810d668e42b03b6bd7f9784dfdb6337b6116e8
parentChange keybindings (diff)
downloademacs-ec64f8bdff4600565b398c5219bab3ac311ce511.tar.gz
emacs-ec64f8bdff4600565b398c5219bab3ac311ce511.zip
Correct things
-rw-r--r--init.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.el b/init.el index 816654c..4cef620 100644 --- a/init.el +++ b/init.el
@@ -545,7 +545,7 @@
545 (:global "C-=" er/expand-region)) 545 (:global "C-=" er/expand-region))
546 546
547(setup (:straight crux) 547(setup (:straight crux)
548 (:advise kill-line :override crux-kill-and-join-forward) 548 (advice-add 'kill-line :override #'crux-kill-and-join-forward)
549 (:global "M-`" crux-other-window-or-switch-buffer 549 (:global "M-`" crux-other-window-or-switch-buffer
550 "C-o" crux-smart-open-line 550 "C-o" crux-smart-open-line
551 "M-o" crux-smart-open-line-above 551 "M-o" crux-smart-open-line-above
@@ -605,7 +605,7 @@ call `zzz-to-char'."
605(setup (:straight (vertico 605(setup (:straight (vertico
606 :host github 606 :host github
607 :repo "minad/vertico")) 607 :repo "minad/vertico"))
608 (setq resize-mini-windows t) 608 (setq resize-mini-windows 'grow-only)
609 (if (boundp 'comp-deferred-compilation-deny-list) 609 (if (boundp 'comp-deferred-compilation-deny-list)
610 (add-to-list 'comp-deferred-compilation-deny-list "vertico")) 610 (add-to-list 'comp-deferred-compilation-deny-list "vertico"))
611 (icomplete-mode -1) 611 (icomplete-mode -1)