aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/init
diff options
context:
space:
mode:
authorGravatar Tom Willemse2018-07-09 19:56:50 -0700
committerGravatar Tom Willemse2018-07-09 19:56:50 -0700
commita364ca7b28c9297f6918b573fd3d1a7cd892f319 (patch)
tree333220dcc956732b3fa6d9c4790ef37cad342c06 /emacs/.emacs.d/init
parentb12c7138893d7d75337549930a0bdd0ffc13b104 (diff)
downloadnew-dotfiles-a364ca7b28c9297f6918b573fd3d1a7cd892f319.tar.gz
new-dotfiles-a364ca7b28c9297f6918b573fd3d1a7cd892f319.zip
Add more company mode config
Diffstat (limited to 'emacs/.emacs.d/init')
-rw-r--r--emacs/.emacs.d/init/oni-company-init.el71
1 files changed, 71 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init/oni-company-init.el b/emacs/.emacs.d/init/oni-company-init.el
new file mode 100644
index 0000000..8b8317e
--- /dev/null
+++ b/emacs/.emacs.d/init/oni-company-init.el
@@ -0,0 +1,71 @@
+;;; oni-company-init.el --- Company configuration -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2018 Tom Willemse
+
+;; Author: Tom Willemse <tom@ryuslash.org>
+;; Keywords: local
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; My configuration for `company-mode'.
+
+;;; Code:
+
+(require 'company)
+(require 'diminish)
+(require 'fill-column-indicator)
+
+(defvar-local oni-company-init--fci-used nil
+ "Buffer-local indicator used to remember the state of `fci-mode'.
+When `oni-company-init--hide-fill-column-indicator' actually
+hides the fill column indicator this variable will be set to t.
+`oni-company-init--show-fill-column-indicator' will only actually
+show the fill column indicator if this variable is t.")
+
+(defun oni-company-init--hide-fill-column-indicator (_)
+ "Hide the fill column indicator if `fci-mode' is on."
+ (when fci-mode
+ (setq oni-company-init--fci-used t)
+ (turn-off-fci-mode)))
+
+(defun oni-company-init--show-fill-column-indicator (_)
+ "Show the fill column indicator if `oni-company-init--fci-used' is t."
+ (when oni-company-init--fci-used
+ (setq oni-company-init--fci-used nil)
+ (turn-on-fci-mode)))
+
+(diminish 'company-mode)
+
+(setq company-frontends
+ '(company-pseudo-tooltip-unless-just-one-frontend
+ company-echo-metadata-frontend
+ company-preview-frontend))
+
+;; Turn the fill column indicator off when the company mode pop-up
+;; appears.
+(add-hook 'company-completion-started-hook 'oni-company-init--hide-fill-column-indicator)
+
+;; Turn the fill column indicator on when the company-mode pop-up
+;; disappears (either because it is finished or because it was
+;; cancelled).
+(add-hook 'company-completion-finished-hook 'oni-company-init--show-fill-column-indicator)
+(add-hook 'company-completion-cancelled-hook 'oni-company-init--show-fill-column-indicator)
+
+(add-to-list 'company-backends 'company-tern)
+(add-to-list 'company-backends 'company-jedi)
+
+(provide 'oni-company-init)
+;;; oni-company-init.el ends here