system changes
This commit is contained in:
parent
016e3e40f9
commit
0b0c08406a
1 changed files with 17 additions and 11 deletions
|
@ -214,20 +214,26 @@ Install and configure =vterm= as a terminal emulator in Emacs.
|
||||||
("C-c v" . vterm))
|
("C-c v" . vterm))
|
||||||
#+end_src
|
#+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.
|
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
|
#+begin_src emacs-lisp
|
||||||
(use-package company
|
;;(use-package company
|
||||||
:init
|
;; :init
|
||||||
(global-company-mode)
|
;; (global-company-mode)
|
||||||
:config
|
;; :config
|
||||||
(setq company-idle-delay 0.4
|
;; (setq company-idle-delay 0.4
|
||||||
company-minimum-prefix-length 1
|
;; company-minimum-prefix-length 1
|
||||||
company-selection-wrap-around t))
|
;; company-selection-wrap-around t))
|
||||||
(use-package vertico
|
;;(use-package vertico
|
||||||
|
;; :custom
|
||||||
|
;; (vertico-cycle t)
|
||||||
|
;; :init
|
||||||
|
;; (vertico-mode 1))
|
||||||
|
|
||||||
|
(use-package corfu
|
||||||
:custom
|
:custom
|
||||||
(vertico-cycle t)
|
(corfu-cycle t)
|
||||||
:init
|
:init
|
||||||
(vertico-mode 1))
|
(global-corfu-mode))
|
||||||
(use-package orderless
|
(use-package orderless
|
||||||
:custom
|
:custom
|
||||||
(completion-styles '(orderless basic))
|
(completion-styles '(orderless basic))
|
||||||
|
|
Loading…
Add table
Reference in a new issue