;;; prelude-company.el --- company-mode setup ;; ;; Copyright © 2011-2022 Bozhidar Batsov ;; ;; Author: Bozhidar Batsov ;; URL: https://github.com/bbatsov/prelude ;; This file is not part of GNU Emacs. ;;; Commentary: ;; company-mode config. ;;; License: ;; 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 GNU Emacs; see the file COPYING. If not, write to the ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. ;;; Code: (prelude-require-packages '(company)) (require 'company) (require 'diminish) (setq company-idle-delay 0.5) (setq company-show-numbers t) (setq company-tooltip-limit 10) (setq company-minimum-prefix-length 2) (setq company-tooltip-align-annotations t) ;; invert the navigation direction if the the completion popup-isearch-match ;; is displayed on top (happens near the bottom of windows) (setq company-tooltip-flip-when-above t) (global-company-mode 1) (diminish 'company-mode) (provide 'prelude-company) ;;; prelude-company.el ends here