diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-03-03 14:41:14 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-03-03 14:41:14 -0600 |
commit | 0b0c08406ae953dc398d004de7480a303dc32186 (patch) | |
tree | 9602088d2adf7e76beb599130b5d12ebf2742736 /common/.config/emacs | |
parent | 016e3e40f9570bb656c095d02f99bf32c6558423 (diff) |
system changes
Diffstat (limited to 'common/.config/emacs')
-rw-r--r-- | common/.config/emacs/init.el.org | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org index 898927a..5eb3660 100644 --- a/common/.config/emacs/init.el.org +++ b/common/.config/emacs/init.el.org @@ -214,20 +214,26 @@ Install and configure =vterm= as a terminal emulator in Emacs. ("C-c v" . vterm)) #+end_src -Install =company= for completions. It is configured to start with no delay immediately after the first key press. =vertico= is used as a front end for completions. =orderless= is used to allow searching in any portion of a string and =marginalia= gives descriptions of items in the list. -#+begin_src emacs-lisp - (use-package company - :init - (global-company-mode) - :config - (setq company-idle-delay 0.4 - company-minimum-prefix-length 1 - company-selection-wrap-around t)) - (use-package vertico +Use =corfu= for completions. =orderless= is used to allow searching in any portion of a string and =marginalia= gives descriptions of items in the list. +#+begin_src emacs-lisp + ;;(use-package company + ;; :init + ;; (global-company-mode) + ;; :config + ;; (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 - (vertico-cycle t) + (corfu-cycle t) :init - (vertico-mode 1)) + (global-corfu-mode)) (use-package orderless :custom (completion-styles '(orderless basic)) |