From 03ed4b529b0303aa42ca3ee1ad7c52cefaa0f389 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Sat, 24 Feb 2024 19:37:10 -0500 Subject: [PATCH] fix(emacs): add explicit company completion keybind Signed-off-by: Lucas Sta Maria --- .emacs.d/include/misc.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.emacs.d/include/misc.el b/.emacs.d/include/misc.el index 05e28f3..9097bec 100644 --- a/.emacs.d/include/misc.el +++ b/.emacs.d/include/misc.el @@ -142,6 +142,9 @@ (meow-setup) +;; Company completion +(keymap-global-set "M-SPC" #'company-complete) + ;; LSP (setq lsp-inlay-hint-enable t) (setq lsp-ui-doc-include-signature t)