diff options
Diffstat (limited to 'mixins')
-rw-r--r-- | mixins/base.el | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/mixins/base.el b/mixins/base.el index f8ea48b..71158cd 100644 --- a/mixins/base.el +++ b/mixins/base.el @@ -59,6 +59,9 @@ ;; candidate you select (setf (alist-get ?. avy-dispatch-alist) 'bedrock/avy-action-embark)) +(use-package embark-consult + :ensure t) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; Minibuffer and completion @@ -85,14 +88,14 @@ (global-corfu-mode)) ;; Part of corfu -(use-package corfu-popupinfo - :after corfu - :hook (corfu-mode . corfu-popupinfo-mode) - :custom - (corfu-popupinfo-delay '(0.25 . 0.1)) - (corfu-popupinfo-hide nil) - :config - (corfu-popupinfo-mode)) +;; (use-package corfu-popupinfo +;; :after corfu +;; :hook (corfu-mode . corfu-popupinfo-mode) +;; :custom +;; (corfu-popupinfo-delay '(0.25 . 0.1)) +;; (corfu-popupinfo-hide nil) +;; :config +;; (corfu-popupinfo-mode)) ;; Make corfu popup come up in terminal overlay (use-package corfu-terminal @@ -110,6 +113,7 @@ (add-to-list 'corfu-margin-formatters #'kind-icon-margin-formatter)) (use-package eshell + :elpaca nil :bind (("C-r" . consult-history))) ;; Orderless: powerful completion style |