Add company mode config

This commit is contained in:
Tom Willemse 2016-10-29 16:36:44 +02:00
parent a6c9acf85e
commit c598dc2b76
2 changed files with 14 additions and 0 deletions

View file

@ -458,6 +458,13 @@ To start off, first I need to enable lexical binding.
* Minor modes
- [[file:init/oni-company-init.org][Company mode]] :: A better auto completion system than auto
complete.
#+BEGIN_SRC emacs-lisp
(with-eval-after-load 'company (load "oni-company-init"))
#+END_SRC
** Paredit
Paredit is an awesome minor-mode to have when you write in any

View file

@ -0,0 +1,7 @@
#+TITLE: Company mode configuration
Don't show that company mode is enabled in the minibuffer.
#+BEGIN_SRC emacs-lisp
(diminish 'company-mode)
#+END_SRC