aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/init/oni-company-init.org
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/.emacs.d/init/oni-company-init.org')
-rw-r--r--emacs/.emacs.d/init/oni-company-init.org22
1 files changed, 0 insertions, 22 deletions
diff --git a/emacs/.emacs.d/init/oni-company-init.org b/emacs/.emacs.d/init/oni-company-init.org
deleted file mode 100644
index 343a215..0000000
--- a/emacs/.emacs.d/init/oni-company-init.org
+++ /dev/null
@@ -1,22 +0,0 @@
-#+TITLE: Company mode configuration
-
-#+BEGIN_SRC emacs-lisp
- (require 'company)
- (require 'diminish)
-#+END_SRC
-
-Don't show that company mode is enabled in the minibuffer.
-
-#+BEGIN_SRC emacs-lisp
- (diminish 'company-mode)
-#+END_SRC
-
-Show a tooltip when there is more than one completion, show the
-documentation for a symbol in the echo area and always show a preview.
-
-#+BEGIN_SRC emacs-lisp
- (setq company-frontends
- '(company-pseudo-tooltip-unless-just-one-frontend
- company-echo-metadata-frontend
- company-preview-frontend))
-#+END_SRC