diff --git a/.emacs.d/config/dev.el b/.emacs.d/config/dev.el index a46ea30..7507333 100644 --- a/.emacs.d/config/dev.el +++ b/.emacs.d/config/dev.el @@ -49,3 +49,10 @@ :config (setq lsp-ui-doc-position 'at-point) (setq lsp-ui-doc-show-with-mouse nil)) + +(use-package company + :ensure t + :bind (:map company-active-map + ("RET" . nil) + ("" . nil) + ("M-RET" . company-complete-selection)))