about summary refs log tree commit diff stats
path: root/.emacs.d/lisp/init-lsp.el
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-06-10 13:31:22 +0100
committerDavid Morgan <djm_uk@protonmail.com>2022-06-10 13:31:22 +0100
commit80dc64a09db6dfd12c15a30434684d58f896b76f (patch)
treef10c9d4087247f83c7260f5f07dde601a584137e /.emacs.d/lisp/init-lsp.el
parentf0fade0180dbd7960924a1132910de2292cba89e (diff)
downloaddotfiles-80dc64a09db6dfd12c15a30434684d58f896b76f.tar.gz
Turn off lsp-eldoc-enable-hover
Diffstat (limited to '.emacs.d/lisp/init-lsp.el')
-rw-r--r--.emacs.d/lisp/init-lsp.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-lsp.el b/.emacs.d/lisp/init-lsp.el
index a66cf28..18856c4 100644
--- a/.emacs.d/lisp/init-lsp.el
+++ b/.emacs.d/lisp/init-lsp.el
@@ -40,9 +40,10 @@
         lsp-modeline-code-actions-enable nil
         lsp-modeline-diagnostics-enable nil
         lsp-treemacs-theme "Iconless"
-        ;; user cider for indendation and completion instead
+        ;; user cider for indendation, completion and eldoc instead
         lsp-enable-indentation nil
-        lsp-completion-enable nil))
+        lsp-completion-enable nil
+        lsp-eldoc-enable-hover nil))
 
 (provide 'init-lsp)
 ;;; init-lsp.el ends here