From c598dc2b761f6190e58795a41f00bb9e9c777e67 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sat, 29 Oct 2016 16:36:44 +0200 Subject: Add company mode config --- emacs/.emacs.d/init.org | 7 +++++++ emacs/.emacs.d/init/oni-company-init.org | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 emacs/.emacs.d/init/oni-company-init.org (limited to 'emacs') diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 75cda50..2048928 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -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 diff --git a/emacs/.emacs.d/init/oni-company-init.org b/emacs/.emacs.d/init/oni-company-init.org new file mode 100644 index 0000000..d552d57 --- /dev/null +++ b/emacs/.emacs.d/init/oni-company-init.org @@ -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 -- cgit v1.2.3-54-g00ecf