+company to core packages
This commit is contained in:
@@ -556,7 +556,18 @@ freely.
|
|||||||
:config
|
:config
|
||||||
(evil-magit-init))
|
(evil-magit-init))
|
||||||
#+end_src
|
#+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
|
Use hydras for stuff that I use often, currently buffer manipulation
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package hydra
|
(use-package hydra
|
||||||
|
|||||||
Reference in New Issue
Block a user