aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config/emacs
diff options
context:
space:
mode:
Diffstat (limited to 'Emacs/.config/emacs')
-rw-r--r--Emacs/.config/emacs/config.org13
1 files changed, 12 insertions, 1 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org
index 8d4877d..6af96f9 100644
--- a/Emacs/.config/emacs/config.org
+++ b/Emacs/.config/emacs/config.org
@@ -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