Add company mode config
This commit is contained in:
parent
a6c9acf85e
commit
c598dc2b76
2 changed files with 14 additions and 0 deletions
|
@ -458,6 +458,13 @@ To start off, first I need to enable lexical binding.
|
||||||
|
|
||||||
* Minor modes
|
* 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
|
||||||
|
|
||||||
Paredit is an awesome minor-mode to have when you write in any
|
Paredit is an awesome minor-mode to have when you write in any
|
||||||
|
|
7
emacs/.emacs.d/init/oni-company-init.org
Normal file
7
emacs/.emacs.d/init/oni-company-init.org
Normal 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
|
Loading…
Reference in a new issue