summaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2024-05-08 23:39:26 +0200
committerMartin Polden <mpolden@mpolden.no>2024-05-08 23:41:48 +0200
commit11b879e857fad15d78475abba61b9f82fc7ea64b (patch)
treeb119c678bce676bdc4e55205f5ae408da924bf38 /lisp
parentb0e6eafdf89b2f79457c82da5d6f182b43cad50c (diff)
eldoc: remove unused configuration
This was added to work around how an earlier combination of eldoc and eglot displayed documentation in the echo area.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/init-eldoc.el14
1 files changed, 0 insertions, 14 deletions
diff --git a/lisp/init-eldoc.el b/lisp/init-eldoc.el
deleted file mode 100644
index ce99708..0000000
--- a/lisp/init-eldoc.el
+++ /dev/null
@@ -1,14 +0,0 @@
-;;; 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