diff options
| author | Jack Jamison <jjamison@litecoms.com> | 2026-07-31 09:02:54 -0400 |
|---|---|---|
| committer | Jack Jamison <jjamison@litecoms.com> | 2026-07-31 09:02:54 -0400 |
| commit | 9b2af69634fb028b0072048bbadf016c35c453a7 (patch) | |
| tree | 2f0a0976a2446d2551e05b81738937ef5e731e59 /.config/emacs/completion-at-point.el | |
| parent | c1229075fbed30c7dcffc84e7ca11c2191dda11b (diff) | |
fix up to make init work and no littering AT ALL
Diffstat (limited to '.config/emacs/completion-at-point.el')
| -rw-r--r-- | .config/emacs/completion-at-point.el | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/.config/emacs/completion-at-point.el b/.config/emacs/completion-at-point.el index a563e99..9793069 100644 --- a/.config/emacs/completion-at-point.el +++ b/.config/emacs/completion-at-point.el @@ -1,17 +1,17 @@ -;; (use-package corfu -;; :ensure t -;; :hook (after-init . global-corfu-mode) -;; :bind (:map corfu-map ("<tab>" . corfu-complete)) -;; :config -;; (setq tab-always-indent 'complete) -;; (setq corfu-preview-current nil) -;; (setq corfu-min-width 20) -;; (setq corfu-popupinfo-delay '(1.25 . 0.5)) -;; (corfu-popupinfo-mode 1) -;; ;; Sort by input history (no need to modify `corfu-sort-function'). -;; (with-eval-after-load 'savehist -;; (corfu-history-mode 1) -;; (add-to-list 'savehist-additional-variables 'corfu-history))) +(use-package corfu + :ensure t + :hook (after-init . global-corfu-mode) + :bind (:map corfu-map ("<tab>" . corfu-complete)) + :config + (setq tab-always-indent 'complete) + (setq corfu-preview-current nil) + (setq corfu-min-width 20) + (setq corfu-popupinfo-delay '(1.25 . 0.5)) + (corfu-popupinfo-mode 1) + ;; Sort by input history (no need to modify `corfu-sort-function'). + (with-eval-after-load 'savehist + (corfu-history-mode 1) + (add-to-list 'savehist-additional-variables 'corfu-history))) (use-package completion-preview :diminish |
