1
0
Fork 0
emacs-config/oni-company.el

52 lines
1.5 KiB
EmacsLisp
Raw Normal View History

2019-02-06 09:04:41 +01:00
;;; oni-company.el --- Company configuration -*- lexical-binding: t; -*-
;; Copyright (C) 2019 Tom Willemse
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
;; Version: 20190523070353
;; Package-Requires: (company company-posframe diminish)
2019-02-06 09:04:41 +01:00
;; 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:
;; Configuration for `company-mode'.
;;; Code:
(require 'company)
(require 'company-dabbrev)
(require 'company-posframe)
2019-02-06 09:04:41 +01:00
(require 'diminish)
(setq company-dabbrev-ignore-case nil)
(setq company-idle-delay 0.2)
(setq company-tooltip-align-annotations t)
(setq company-frontends
'(company-pseudo-tooltip-unless-just-one-frontend
company-echo-metadata-frontend
company-preview-frontend))
(company-posframe-mode)
2019-02-06 09:04:41 +01:00
(diminish 'company-mode)
(diminish 'company-posrame-mode)
2019-02-06 09:04:41 +01:00
;;;###autoload(with-eval-after-load 'company (require 'oni-company))
(provide 'oni-company)
;;; oni-company.el ends here