+company to core packages

This commit is contained in:
2020-08-23 17:16:34 +01:00
parent d0be4ad5e9
commit 9b0c50fc7c

View File

@@ -556,7 +556,18 @@ freely.
:config
(evil-magit-init))
#+end_src
* Hydra
** Company
Company is the auto complete system I use. I don't like having heavy
setups for company, as it only makes it worse to use. In this case,
just setup some evil binds for company
#+begin_src emacs-lisp
(use-package company
:hook (prog-mode-hook . company-mode)
:bind (("C-SPC" . company-complete)
:map company-active-map
("M-j" . company-select-next)
("M-k" . company-select-previous)))
#+end_src
Use hydras for stuff that I use often, currently buffer manipulation
#+begin_src emacs-lisp
(use-package hydra