From 84c90f3ce517a71ddb23a434768a3ac5bd85b2ec Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Sun, 27 Oct 2024 23:35:08 -0400 Subject: [PATCH] fix(emacs): add cape keyword completion Signed-off-by: Lucas Sta Maria --- .emacs.d/init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 7b3eb13..baeb962 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -44,7 +44,8 @@ :init (add-hook 'completion-at-point-functions #'cape-dabbrev) (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 :init (add-hook 'after-init-hook 'vertico-mode))