summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--init.el1
-rw-r--r--lisp/init-eldoc.el14
2 files changed, 0 insertions, 15 deletions
diff --git a/init.el b/init.el
index 7746428..333a8ec 100644
--- a/init.el
+++ b/init.el
@@ -31,7 +31,6 @@
(mpolden/maybe-require 'init-tramp)
;; writing
-(mpolden/maybe-require 'init-eldoc)
(mpolden/maybe-require 'init-flyspell)
;; navigation
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