summaryrefslogtreecommitdiffstats
path: root/lisp/init-eldoc.el
blob: ce997081106c365fc4b6d64a17fc970a9108e4be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;;; init-eldoc.el --- configure documentation viewer  -*- lexical-binding:t -*-
;;; Commentary:
;;; Code:

(use-package eldoc
  :commands eldoc-mode
  :init
  ;; always display documentation in a separate buffer
  (setq eldoc-display-functions '(eldoc-display-in-buffer))
  :diminish)

(provide 'init-eldoc)

;;; init-eldoc.el ends here