1
0
Fork 0

fix(emacs): add cape keyword completion

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2024-10-27 23:35:08 -04:00
parent 5f49a426e8
commit 84c90f3ce5
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -44,7 +44,8 @@
:init :init
(add-hook 'completion-at-point-functions #'cape-dabbrev) (add-hook 'completion-at-point-functions #'cape-dabbrev)
(add-hook 'completion-at-point-functions #'cape-file) (add-hook 'completion-at-point-functions #'cape-file)
(add-hook 'completion-at-point-functions #'cape-elisp-block)) (add-hook 'completion-at-point-functions #'cape-elisp-block)
(add-hook 'completion-at-point-functions #'cape-keyword))
(use-package vertico :straight t (use-package vertico :straight t
:init :init
(add-hook 'after-init-hook 'vertico-mode)) (add-hook 'after-init-hook 'vertico-mode))