diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-03-03 14:44:32 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-03-03 14:44:32 -0600 |
commit | 3559062652af3973d3bfed49d4ca95dde1739721 (patch) | |
tree | 19bab95911ef8d404c718e3f8b1851af1e1f3357 /common | |
parent | 0b0c08406ae953dc398d004de7480a303dc32186 (diff) |
system changes
Diffstat (limited to 'common')
-rw-r--r-- | common/.config/emacs/init.el.org | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org index 5eb3660..e5b9793 100644 --- a/common/.config/emacs/init.el.org +++ b/common/.config/emacs/init.el.org @@ -223,17 +223,17 @@ Use =corfu= for completions. =orderless= is used to allow searching in any porti ;; (setq company-idle-delay 0.4 ;; company-minimum-prefix-length 1 ;; company-selection-wrap-around t)) - ;;(use-package vertico - ;; :custom - ;; (vertico-cycle t) - ;; :init - ;; (vertico-mode 1)) (use-package corfu :custom (corfu-cycle t) + (corfu-auto t) :init (global-corfu-mode)) + (use-package vertico + :custom + (vertico-cycle t) + (vertico-mode 1)) (use-package orderless :custom (completion-styles '(orderless basic)) |