diff --git a/.emacs.d/init.el b/.emacs.d/init.el index ddb375a..05dddcb 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -41,6 +41,18 @@ ;; ----------------------------------------------------------------- +(use-package consult + :bind + (("C-x b" . consult-buffer) + ("C-x 4 b" . consult-buffer-other-window) + ("C-x r b" . consult-bookmark) + ("C-x p b" . consult-project-buffer) + ("M-y" . consult-yank-pop) + ("M-g g" . consult-goto-line) + ("M-g M-g" . consult-goto-line)) + :hook + (completion-list-mode . consult-preview-at-point-mode)) + (use-package corfu :custom (corfu-cycle t)