fix(emacs): migrate company configuration to init.el
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
parent
bda35981fc
commit
575f930dd0
2 changed files with 4 additions and 4 deletions
|
@ -164,10 +164,6 @@
|
||||||
|
|
||||||
(meow-setup)
|
(meow-setup)
|
||||||
|
|
||||||
;; Company completion
|
|
||||||
(keymap-global-set "M-SPC" #'company-complete)
|
|
||||||
(setq completion-styles '(basic orderless))
|
|
||||||
|
|
||||||
;; LSP
|
;; LSP
|
||||||
(setq lsp-inlay-hint-enable t)
|
(setq lsp-inlay-hint-enable t)
|
||||||
(setq lsp-ui-doc-include-signature t)
|
(setq lsp-ui-doc-include-signature t)
|
||||||
|
|
|
@ -26,6 +26,10 @@
|
||||||
|
|
||||||
;; Completion
|
;; Completion
|
||||||
(use-package company :straight t
|
(use-package company :straight t
|
||||||
|
:custom
|
||||||
|
(completion-styles '(basic orderless))
|
||||||
|
:bind
|
||||||
|
("M-SPC" . #'company-complete)
|
||||||
:init
|
:init
|
||||||
(add-hook 'after-init-hook 'global-company-mode))
|
(add-hook 'after-init-hook 'global-company-mode))
|
||||||
(use-package company-box :straight t
|
(use-package company-box :straight t
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue