diff options
| author | bard <[email protected]> | 2024-05-17 20:56:17 -0400 |
|---|---|---|
| committer | bard <[email protected]> | 2024-05-17 20:56:17 -0400 |
| commit | 06aa3733dd7168a4b14b43692a2594526af445f4 (patch) | |
| tree | af2b60b2c025bbaf1dde8df9e8dd134a90126176 /bard-emacs-modules/bard-emacs-completion.el | |
| parent | 49a0077ad1809a02b57351adbc2ad7f5782bb87e (diff) | |
fix: ensure true
ensure true for external use-package declarations
Diffstat (limited to 'bard-emacs-modules/bard-emacs-completion.el')
| -rw-r--r-- | bard-emacs-modules/bard-emacs-completion.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bard-emacs-modules/bard-emacs-completion.el b/bard-emacs-modules/bard-emacs-completion.el index 4400f2b..9d1dcc2 100644 --- a/bard-emacs-modules/bard-emacs-completion.el +++ b/bard-emacs-modules/bard-emacs-completion.el @@ -31,19 +31,23 @@ ;; minibuffer completion (use-package vertico + :ensure t :init (vertico-mode 1)) (use-package marginalia + :ensure t :init (marginalia-mode 1)) (use-package orderless + :ensure t :config (setq completion-styles '(orderless basic))) (use-package corfu - :hook (after-init . global-corfu-mode) + :ensure t + :hook (after-init . global-corfu-mode) ;; I also have (setq tab-always-indent 'complete) for TAB to complete ;; when it does not need to perform an indentation change. :bind (:map corfu-map ("<tab>" . corfu-complete)) @@ -145,6 +149,7 @@ ) (use-package imenu-list + :ensure t :config (setq imenu-list-idle-update-delay 0.0) (setq org-imenu-depth 2) |
