Initial commit
This commit is contained in:
commit
1eb8f49be2
20 changed files with 378 additions and 0 deletions
27
.emacs.d/modules/tobmacs-completion.el
Normal file
27
.emacs.d/modules/tobmacs-completion.el
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
(use-package vertico
|
||||
:init
|
||||
(vertico-mode))
|
||||
|
||||
(use-package savehist
|
||||
:init
|
||||
(savehist-mode))
|
||||
|
||||
(use-package orderless
|
||||
:custom
|
||||
(completion-styles '(orderless basic))
|
||||
(completion-category-overrides '((file (styles basic partial-completion)))))
|
||||
|
||||
(use-package marginalia
|
||||
:init
|
||||
(marginalia-mode))
|
||||
|
||||
(use-package corfu
|
||||
:custom
|
||||
(corfu-cycle t)
|
||||
(corfu-preselect-first nil)
|
||||
(corfu-auto t)
|
||||
:init
|
||||
(global-corfu-mode))
|
||||
|
||||
|
||||
(provide 'tobmacs-completion)
|
||||
Loading…
Add table
Add a link
Reference in a new issue