Added company-quickhelp.

This commit is contained in:
tastytea 2019-07-28 07:20:51 +02:00
parent 9f0c99fac1
commit 6d8244e10f
1 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,5 @@
;;; init.el --- tastytea's Emacs init file.
;; Time-stamp: <2019-07-28T03:55:07+00:00>
;; Time-stamp: <2019-07-28T05:20:27+00:00>
;;; Commentary:
;; I am using this file with Emacs 26, but most of it will probably work with
@ -250,6 +250,12 @@ With argument, do this that many times."
:hook
(after-init . company-statistics-mode))
;; Documentation popups for completions.
(use-package company-quickhelp
:config
(company-quickhelp-mode)
)
;; Set default indentation.
(setq-default indent-tabs-mode nil
tab-width 4)
@ -539,6 +545,7 @@ With argument, do this that many times."
(use-package ivy-rich
:after (all-the-icons counsel)
:config
;; Icons in switch-buffer.
(defun my/ivy-rich-switch-buffer-icon (candidate)
(with-current-buffer
(get-buffer candidate)